在iOS简单通讯录的教程中,从登录界面到通讯录联系人界面的数据顺传部分的方法如下,根据不同的登录用户名,变换通讯录联系人界面的标题:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
UIViewController *vc = segue.destinationViewController;
vc.title = [NSString stringWithFormat:@"%@的联系人列表",_accountField.text];
}
我的理解是:这个方法新建了一个UIViewController
类的对象vc
,并把segue
的destinationViewController
赋值给了vc
,然后改变了vc
对象的title
,最后也没有返回vc
,和destinationViewController
的title
应该没有关系啊?为什么这样写是正确的呢?
怪我咯2017-04-18 09:15:14
这个方法新建了一个UIViewController类的对象vc
这里哪有新建VC的操作啊,没有任何内存分配啊。
UIViewController *vc = segue.destinationViewController;
vc.title = [NSString stringWithFormat:@"%@的联系人列表",_accountField.text];
这代码就和下面的是完全一样的
segue.destinationViewController.title = [NSString stringWithFormat:@"%@的联系人列表",_accountField.text];
自然不需要返回。
PHP中文网2017-04-18 09:15:14
如果不用segue 从sb生成一个vc大概是这样
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"your sb name" bundle:nil];
UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"your vc identifier"];
vc.title = @"your title";
...
present or push vc
segue去调用destinationViewController时 其实做的也是这个事情 它从sb生成vc 然后返回给你
这个vc和你自己生成是一样的
{
vc.title = @"your title";
...
}
present or push vc by segue
ringa_lee2017-04-18 09:15:14
(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender这个方法是在切换界面的时候调用,这个时候segue就已经包含了你要去的界面了,并非这个时候创建的。storyboard会自己创建你要去的viewController对象,并把它给segue。
UIViewController *vc = segue.destinationViewController;
vc.title = [NSString stringWithFormat:@"%@的联系人列表",_accountField.text];
这两句代码是你把segue的目标VC取出,修改了它的title。
重点是理解你要去的目标VC是storybard构建的,不是你创建然后返回的。