我可以通过将数据从表传递到其他表NSObject
吗?
例子:
第一张表发送数据
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
NSIndexPath *path = [self.tableView indexPathForSelectedRow];
Data *g = [[Data alloc]init];
[g setSelection1:(int)path.row];
}
NSLog
测试选择1value = path.row;
当我使用第二个表时,我导入数据并分配它,但我在 selection1 中的值丢失了。
它始终为 0;