1.导航类型 UINavigationController 适用于父子页面的跳转 UITabBarController 适用于平级页面的跳转 2.presentViewController / dismissViewControllerAnimated和pushViewController / po ...
分类:
其他好文 时间:
2016-05-25 13:12:10
阅读次数:
163
最近在对公司的一个老项目进行版本升级,添加了导航栏和tabBar,并且在个人中心界面隐藏navigationBar,于是在控制器里添加了如下对象方法: - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; / ...
分类:
移动开发 时间:
2016-05-21 10:13:58
阅读次数:
289
当有navigationBar的时候
不设置向下移动64个单位 textView和tableView都是scrollView,因此当有navigationBar的时候
都会自动的往下移
因此可以用这两句话 其中一种方法来解决
不设置自动往下移,本来默认是true
self.automaticallyAdjustsScrollViewInsets = false还有一种是跟新tableVi...
分类:
其他好文 时间:
2016-05-18 18:22:35
阅读次数:
213
//设置NavigationBar背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]; //@{}代表Dictionary [[UINavigationBar appearance] setTitleTextA... ...
分类:
其他好文 时间:
2016-05-16 17:36:31
阅读次数:
133
1.将tableView显示在NavigationBar下面 tableView.contentInset = UIEdgeInsetsMake(20, 0, 0, 0); tableView.scrollIndicatorInsets = tableView.contentInset; 等价于: ...
分类:
其他好文 时间:
2016-05-16 00:10:33
阅读次数:
211
1.通过xib创建一个cell,将label进行上左下右,进行适配, self.automaticallyAdjustsScrollViewInsets = NO; self.edgesForExtendedLayout = UIRectEdgeNone;//将原点移动到navigationBar下 ...
分类:
其他好文 时间:
2016-05-16 00:04:18
阅读次数:
252
[self.navigationController.navigationBar setTitleTextAttributes: @{NSFontAttributeName:[UIFont boldSystemFontOfSize:20.0f],// 红色区域为字体加粗方法 NSForeground ...
分类:
其他好文 时间:
2016-05-14 12:40:22
阅读次数:
222
#ifndef MacroDefinition_h
#define MacroDefinition_h//-------------------获取设备大小-------------------------
//NavBar高度
#define NavigationBar_HEIGHT 44
//获取屏幕 宽度、高度
#define SCREEN_WIDTH ([UIScreen mainScree...
分类:
移动开发 时间:
2016-05-13 03:56:45
阅读次数:
201
创建一个UIView, 设置该UIView的frame.size 和statusBar大小一样, 设置该UIView的frame.origin 为{0,-20}, 设置该UIView的背景色为你希望的statusBar的颜色, 在navigationBar上addSubView该UIView即可。 ...
分类:
其他好文 时间:
2016-05-11 18:16:27
阅读次数:
126