所以我有兩個視圖,第一個有我的TableView,第二個有我的TextField,我想用我的TextField中的文本在我的TableView中添加一行。在TableView中添加行
目前我可以只添加一行
[myTableView addObject:@"Test 1"];
[myTableView addObject:@"Test 2"];
[myTableView addObject:@"Test 3"];
感謝您的幫助!
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSString *cellValue = [myTableView objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [myTableView count];
}
奧科克我有添加我的代碼 – Alex 2010-08-16 20:06:29
奧科克感謝,但問題是,我的文本字段不與我TABL鏈接eView如何添加一行? – Alex 2010-08-16 20:30:58
和myTableView是一個NSMutableArray – Alex 2010-08-16 20:33:19