viewDidLoad中的属性似乎是空的

时间:2015-10-14 22:01:16

标签: ios objective-c

我有一个包含一些数据的视图控制器。有一个动作按钮:

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

}

如您所见,我尝试设置titlecategorycontent属性。

self.postTitleself.categoryself.content不是nil,已通过 调试)

但是,在viewDidLoad视图控制器的DetailedItem方法中,_postTitle_category_content属性似乎是nil ,所以我不能在UI中呈现它们。

我在这里错过了什么吗?

0 个答案:

没有答案