我有文本字段,按钮和UItableview
我的程序。用户在文本字段中输入文本,当他单击按钮时,我想在 上显示他的文本tableviewcell
。他将再次输入一个文本,我将在单元格 0 中显示旧文本,新文本在单元格 1 中。一次又一次......问题看起来很简单。NSMutableArray
当用户单击发送按钮时,我添加了一个对象,但数组计数始终返回 0。任何人都可以帮助我,谢谢。
这是我的代码:
int s=0;
-(IBAction)btn_Click:(id)sender{
[array insertObject:txt.text atIndex:s];
s++;
[tableView reloadData];
}
//mytableview delegates
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [array count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell=[[UITableViewCell alloc]init];
cell.textLabel.text=[array objectAtIndex:indexPath.row];
return cell;
}