ボタンを押すと、データが配列に複数回印刷され、テーブルに入力されます。テキストビューまたは配列のヘルプが必要なテーブルのコードがありますか、それとも辞書が必要ですか?
-(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];
}