常见app架子

一个常见app的框架, 实现一些常用功能

  • TabBarController + NavigationBarController + ViewController
  • 除了栈底ViewController外, 隐藏TabBar
  • 解决NavigationBar自定义返回btn, 造成的bug
  • 添加一个定制TabBar中间的按钮

效果图

  • 有中间btn效果
常见app架子_第1张图片
Simulator Screen Shot 2017年6月8日 下午3.28.43.png
  • 无中间按钮效果
    • 只需要在类MainTabBarController中注释掉一下两行代码即可移除中间btn
  •      tabBar.customDelegate = self;
         [self setValue:tabBar forKey:@"tabBar"];```
    
    
    
    
常见app架子_第2张图片
Simulator Screen Shot 2017年6月8日 下午3.28.28.png
  • 额, 很久以前写的demo, 翻了出来, 很简单的demo, 用得上的给个star
  • github

你可能感兴趣的:(常见app架子)