我有一个包含一些数据的视图控制器。有一个动作按钮:
- (IBAction)readMorePressed:(id)sender {
DetailedItem *itemVc = [self.storyboard instantiateViewControllerWithIdentifier:@"Item"];;
itemVc.postTitle = self.postTitle;
itemVc.category = self.category;
itemVc.content = self.content;
[self.navigationController pushViewController:itemVc animated:YES];
}
如您所见,我尝试设置title
,category
和content
属性。
self.postTitle
,self.category
和self.content
不是nil
,已通过
调试)
但是,在viewDidLoad
视图控制器的DetailedItem
方法中,_postTitle
,_category
和_content
属性似乎是nil
,所以我不能在UI中呈现它们。
我在这里错过了什么吗?