当我按下按钮时,我希望数据多次打印到数组并填充到表中。我有表格的代码只需要文本视图或数组的帮助,还是需要字典?
-(IBAction)share{
if (textdata.text.length > 0)
{
alert1 = [[UIAlertView alloc]initWithTitle:@"Testimony" message:@"Posted Succcessfully: God Bless You" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert1 show];
}
else
{
alert1 = [[UIAlertView alloc]initWithTitle:@"Testimony" message:@"Please Post your Testimony" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert1 show];
}
array = [[NSMutableArray alloc]initWithObjects:textdata.text, nil];
}