一般控制器有延迟是应该我们控制器的视图view是栏加载的,等我们用到的时候才会加载,所有我们在利用UINavigationCongtroller,的这个方法[self.navigationController pushViewController:controller animated:YES];跳...
分类:
移动开发 时间:
2014-09-12 19:03:03
阅读次数:
438
iOS页面跳转:
第一种
[self.navigationController pushViewController:subTableViewController animated:YES];
//描述:通过 NSNavigationBar 进行跳转
[self.navigationController popViewControllerAnimated:Y...
分类:
移动开发 时间:
2014-08-14 16:50:18
阅读次数:
227
主要参考了这篇博客http://mobile.51cto.com/iphone-284116.htm
主要用到了,两个类,一个delegate
a类,调用b类,当b类执行之后,需要把一个数据传递给a类,a类把这个数据显示出来。
1.delegate,就这一个头文件就足够了。在类中去实现这个代理方法
#import
@protocolUIViewPassValueDe...
分类:
移动开发 时间:
2014-08-14 16:49:59
阅读次数:
215
iOS页面跳转:第一种[self.navigationControllerpushViewController:subTableViewControlleranimated:YES];//描述:通过NSNavigationBar进行跳转[self.navigationControllerpopVie...
分类:
移动开发 时间:
2014-08-12 16:27:14
阅读次数:
220
跳转页面的时候 我用的是 [self presentViewController:nLogin animated:NO completion:^{
}];,有A到B再到C,我现在再C页面返回的时候我想直接跳转到A页面 应该怎么做呢?
在C中
//关掉自己
[self
dismissViewControllerAn...
分类:
其他好文 时间:
2014-06-20 12:25:46
阅读次数:
237