将用户输入添加到UITableView

时间:2011-03-09 00:55:45

标签: iphone objective-c xcode uitableview

我想创建一个具有UITableView的iphone应用程序,该应用程序显示用户编写的不同文本。

基本上用户通过iPhone键盘输入一些文本,然后将其保存为UITableView中的条目..

有人能告诉我我会怎么做吗?

2 个答案:

答案 0 :(得分:1)

您可以使用UITextField或UITextView在UITableViewCell中获取用户的输入文本,并且可以将文本输入视图作为子视图添加到UITableViewCell。

答案 1 :(得分:1)

NSMutableArray *Array = [[NSMutableArray alloc] init];

-(void)txtFieldreturn
{
[Array addObject:[NSString stringWithFormat:@"%g",[txtField1.text floatValue]]];
[tableView1 reloadData];
}



- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [container count];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier=@"cell";
cell=[tableView1 dequeueReusableCellWithIdentifier:cellIdentifier];

if(cell==nil)
{
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:cellIdentifier];
}
if(tableView==self.tableView1)
{
cell.textLabel.text=[Array objectAtIndex:indexPath.row];
}
cell.textLabel.font=[UIFont boldSystemFontOfSize:14];
return cell;

}