`
iandaicsu
  • 浏览: 52301 次
社区版块
存档分类
最新评论

Segue

    博客分类:
  • iOS
 
阅读更多
[self performSegueWithIdentifier:@“AskAboutSnowboard” sender:self];

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@“DoAParticularThing”]) {

        [segue.destinationViewController performSelector:@selector(setPreviousImages:) withObject:self.capturedImages];

// 或者  UIViewController *newController = segue.destinationViewController;
// send messages to newController to prepare it to appear on screen
// the segue will do the work of putting the new controller on screen
} }

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics