UIStoryBoard中viewController之间的跳转与传值

UIStoryBoard中viewController之间的跳转与segue

在使用storyboard中,三种segue类型:push、modal、custom。大多数情况会在UINavgationController控制器栈中使用push类型。通过segue可以实现不同视图控制器之间的跳转和传值。

例如通过tableViewCell或者collectionViewCell连接segue到另一个storyboard中的viewController。然后在prepareForSegue:(UIStoryboardSegue *)segue sender:(id )sender方法中传值。

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id )sender
{
    NSLog(@"prepare segue");
    _mySegue = segue;
    if ([segue.identifier isEqualToString:@"showGift_topic"]) {
        HLGiftViewController *vc = segue.destinationViewController;
        vc.item_id = sender;

    }

}

今天遇到了另一种情况,不是由点击cell来触发视图切换,而是点击cell中的图片,触发手势事件来切换视图,同时这两个视图控制器都是在storyboard中。

所以上面的方法就行不通了。这里就需要用到另外一个方法performSegue。
1.首先选中VC1的viewController,拉出一个segue到VC2,segue类型可以设置为push、modal
2.在cell填充内容,给图片添加手势事件。在这里使用了block来做回调,block中调用performSegue方法。

[cell fillViewWithModel:item withBlock:^(NSNumber *item_id) {
     [self performSegueWithIdentifier:@"showGift_topic" sender:item_id];
 }];

- (void)performSegueWithIdentifier:(NSString *)identifier sender:(id)sender{

    HLGiftViewController * giftVC = [[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"HLGiftViewController"];
    giftVC.item_id = sender;
    [self.navigationController pushViewController:giftVC animated:YES];
}

其中的重点在于如何获取到要跳转的目标视图控制器,(不要试图用[[XXX alloc] init],这样可以跳转,但是没有视图)[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]]是用来获取当前使用的storyboard的。而instantiateViewControllerWithIdentifier方法可以通过视图控制器的storyboard identifier 来加载已经在storyboard上创建的viewController。(这里不要和视图控制器的class混淆)

UIStoryBoard中viewController之间的跳转与传值_第1张图片

你可能感兴趣的:(传值,跳转,storyboard)