请帮忙。当我按下按钮时,我希望数据多次打印到数组并填入表格中。我有表的代码只需要textview或数组的帮助,还是我需要一本字典?
- (IBAction为)份额{
if (textdata.text.length > 0)
{
alert1 = [[UIAlertView alloc]initWithTitle:@"Testimony" message:@"Posted Succcessfully: God Bless You" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert1 show];
}
否则 { alert1 = [[UIAlertView alloc] initWithTitle:@“Testimony”消息:@“请发表你的见证”代表:nil cancelButtonTitle:@“Ok”otherButtonTitles:nil];
[alert1 show];
}
array = [[NSMutableArray alloc]initWithObjects:textdata.text, nil];
}
答案 0 :(得分:2)
我的意思是,每次按下文本视图中的按钮时,每次按下按钮时如何查看tableview中的数据。我设置的方式是你按一下它就会与现有数据重叠。我希望每次按下按钮时都将数据保存并存储在tableview中。