- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{ if ([segue.destinationViewController isKindOfClass:[OneVC class]]) {
OneVC *one = segue.destinationViewController;
one.oneStr = @"i`m one";
}
if([segue.destinationViewController isKindOfClass:[TwoVC class]]){ TwoVC *two = segue.destinationViewController;
two.twoStr = @"i`m two";
}
}
相关文章
- 01-22a标签中可以加button,但是不提倡;button中不能加a标签,否则不能跳转
- 01-22vue中页面使用缓存后destroyed失效,如何关闭定时器
- 01-22技术分析:JSP页面的五种跳转方法
- 01-22webpack4 坑收集:html-webpack-plugin在多页面时,无法将optimization.splitChunks提取的公共块,打包到页面中
- 01-22JSP页面中定义class类导致的JSTL语法异常
- 01-22一个简单的Webservice的demo(中)_前端页面调用
- 01-22javascript – 使用windows.location.replace刷新不使用URL中的哈希的页面
- 01-22ajax在success:function中实现刷新/跳转(ps:error.functction同
- 01-22vue跳转当前页面
- 01-22Vue中的路由 以及默认路由跳转