为了犒劳自己的学习内容,就山寨个微信的视图控制吧。拿着微信,仔细的看了一下,主要用到了TabBarController以及配置TabBarItem, NavigationController以及配置NavigationBarItem, 还用到了我们比较复杂的TableViewController.....
分类:
微信 时间:
2014-09-03 09:32:26
阅读次数:
335
self.navigationController.interactivePopGestureRecognizer.delegate = nil;
分类:
其他好文 时间:
2014-09-02 19:35:05
阅读次数:
144
前面的两篇博客都是学习有关屏幕适配也就是相对布局的东西,这篇博客中将会学习视图间的切换。视图间的切换我们可以用代码完成或者用storyboard来建立各个视图控制器间的关系。在需要用到代码进行切换时会用代码进行视图间的跳转。下面的东西我们会主要介绍到NavigationController来进行.....
分类:
移动开发 时间:
2014-09-01 09:15:32
阅读次数:
296
self.navigationController.view.layer.cornerRadius
= 0;...
分类:
其他好文 时间:
2014-08-28 16:14:39
阅读次数:
146
当POP,push,dismiss,pressent连续调用的时候,要延迟会使用,- (IBAction)goShoppingCartButtonAction:(id)sender{ [self.navigationController popToRootViewControllerAnimate....
分类:
其他好文 时间:
2014-08-26 09:40:45
阅读次数:
218
本例说明导航栈的用法,根据导航栈的元素设置情况可以添加临时试图定义三个试图,first,second,third,从第一个到第二个,再到第三个,在第三个页面添加点击事件,事件为: NSMutableArray *arr = [self.navigationController.viewCont...
分类:
移动开发 时间:
2014-08-26 01:45:25
阅读次数:
206
1、初始化UIPopoverController UIPopoverController*popover = [[UIPopoverControlleralloc]initWithContentViewController:navigationController]; //必须是个ViewCont....
分类:
其他好文 时间:
2014-08-25 16:51:34
阅读次数:
204
[self.navigationController.navigationBar setBackgroundImage:imag forBarMetrics:UIBarMetricsDefault];
//button 定义你要的背景 文字 或 事件
UIBarButtonItem *leftBarButton = [[UIBarButtonItem alloc]...
分类:
其他好文 时间:
2014-08-22 17:57:29
阅读次数:
214
- (void)show{ if ([UIApplication sharedApplication].keyWindow.rootViewController.navigationController) { [[UIApplication sharedApplication].keyWin...
分类:
其他好文 时间:
2014-08-15 09:27:27
阅读次数:
182
iOS页面跳转:
第一种
[self.navigationController pushViewController:subTableViewController animated:YES];
//描述:通过 NSNavigationBar 进行跳转
[self.navigationController popViewControllerAnimated:Y...
分类:
移动开发 时间:
2014-08-14 16:50:18
阅读次数:
227