我很困惑。我有一个UITableView,当我点击一行时,它会执行一个带有新UIViewController的pushViewController。我想将数据传递给这个新的视图控制器,但我的对象是null。这是我使用的代码:
//TableViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
MyObject *myObject = [myArray objectAtIndex:indexPath.row];
SecondViewController *vc = [[SecondViewController alloc] init];
vc.newObject = myObject;
[self.navigationController pushViewController:vc animated:YES];
}
//SecondViewController.h
@property (nonatomic, strong) MyObject *newObject;
//SecondViewController.m
@implementation SecondViewController
@synthesize newObject = _newObject;
- (void)viewDidLoad {
NSLog(@"%@", _newObject); // nil
}
这很奇怪,因为我总是以这种方式做事,而且之前总是有效,我不明白为什么返回值为空。
感谢您的帮助:)
答案 0 :(得分:1)
检查您是否在newObject
方法等其他地方重置init
。同时将NSLog
更改为NSLog(@"%@", self.newObject);
,然后重试。