iOS系统导航栏中有leftBarButtonItem和rightBarButtonItem,我们可以根据自己的需求来自定义这两个UIBarButtonItem。...
分类:
其他好文 时间:
2015-08-03 16:54:53
阅读次数:
115
iOS 的导航栏定义leftBarButtonItem 默认的滑动返回 会失效[_currentNavpushViewController:viewControlleranimated:YES];//开启iOS7的滑动返回效果if([_currentNavrespondsToSelector:@se...
分类:
其他好文 时间:
2015-07-22 18:22:00
阅读次数:
108
自定义导航栏按钮:
1.自定义按钮(创建一个按钮)
2.自定义按钮图片(仅仅修改按钮背景图片)
3.修改右侧按钮同上,设置self.navigationItem.rightBarButtonItem即可...
分类:
其他好文 时间:
2015-07-10 11:27:14
阅读次数:
153
主要代码如下://自定义导航栏返回按钮 self.navigationItem.leftBarButtonItem = ({ //导航栏返回背景视图 UIView *view = [[UIView alloc]initWithFrame:CGRect...
分类:
移动开发 时间:
2015-07-03 14:00:11
阅读次数:
238
为UINavigationController添加UINavigationItem,我们可以这样写:1.添加返回导航按钮backBarButtonItem1.用系统自带的返回按钮UIBarButtonItem*leftBarButtonItem = [[UIBarButtonItemalloc]in...
分类:
其他好文 时间:
2015-06-15 20:23:17
阅读次数:
105
TableView不显示没内容的Cell怎么办?类似这种,我不想让下面那些空的显示.很简单.1 self.tableView.tableFooterView = [[UIView alloc] init];试过的都说好.加完这句之后就变成了这样.自定义了leftBarbuttonItem左滑返回手势...
分类:
移动开发 时间:
2015-06-09 11:12:33
阅读次数:
174
需求是:点击返回按钮,自动保存设定,然后返回前一个画面,返回按钮必须使用带左箭头的那种,用过iOS的都懂的。我一开始用的是iOS默认的backBarButtonItem, 但是发现它不能接收事件(Action),即便我设置了target以及Action也完全不起作用。 用leftBarButtonI...
分类:
其他好文 时间:
2015-06-08 21:27:05
阅读次数:
113
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithImage:img style:UIBarButtonItemStylePlain target:self action:@selector(onBack:...
分类:
其他好文 时间:
2015-05-02 23:14:27
阅读次数:
194
iOS的一些小技巧
TableView不显示没内容的Cell怎么办?
类似这种,我不想让下面那些空的显示.
很简单.
self.tableView.tableFooterView = [[UIView alloc] init];
试过的都说好.
加完这句之后就变成了这样.
自定义了leftBarbuttonItem左滑返回手势失效了...
分类:
移动开发 时间:
2015-04-24 10:34:14
阅读次数:
211