0

当我按下按钮时,我希望数据多次打印到数组并填充到表中。我有表格的代码只需要文本视图或数组的帮助,还是需要字典?

-(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];
}
4

1 回答 1

2

我的意思是,每次按下 textview 中的按钮时,每次按下按钮时如何查看 tableview 中的数据。我设置它的方式是你按下它一次,它就会与现有数据重叠。我希望每次按下按钮时都将数据保存并存储在表格视图中。

于 2013-05-17T13:04:20.740 回答