智慧屏 安装 app如何提升家庭娱乐与教育体验的关键工具
896
2022-10-24
iOS开发基础框架 包含TabbarController 和 NavController
HLMain
概述
此项目简单封装了 iOS开发常用的基础框架 解决了 系统导航栏 当有导航栏透明度为0或者隐藏的情况下,滑动控制器返回有bug HLNavigationController 使用了当前APP市场主流的实现效果 滑动返回的时候全屏滚动
HLTabBarController提供了两种方式创建方式
//链式编程+ (instancetype)tabBarControllerWithAddChildVCsBlock: (void(^)(HLTabBarController *tabBarC))addVCBlock;
//对象方法创建- (void)addChildVC:(UIViewController *)vc title:(NSString *)title normalImageName:(NSString *)normalImageName selectedImageName:(NSString *)selectedImageName;
具体实现看源码 里面有大量的注释 这里就不写了
例子
git clone 项目
pod install
查看项目运行结果
运行效果
手动-安装
-项目 然后把HLMain文件夹下的所有文件拖到你的项目中就com+b编译下 看有没有报错
使用
方式一 导入#import "HLTabBarController.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{// Override point for customization after application launch.HLTabBarController *rootVC = [HLTabBarController tabBarControllerWithAddChildVCsBlock:^(HLTabBarController *tabBarC) {[tabBarC addChildVC:[HotViewController new] title:@"首页" normalImageName:@"home" selectedImageName:@"home_press"];[tabBarC addChildVC:[TopLineViewController new] title:@"我的" normalImageName:@"me" selectedImageName:@"me_press"];}];[rootVC tabBarConfigWithBarBackground:[UIColor colorWithRed:1.00f green:1.00f blue:1.00f alpha:1.00f]titleFont:[UIFont systemFontOfSize:12]normalTitleColor:[UIColor colorWithRed:0.56f green:0.60f blue:0.70f alpha:1.00f]selectedColor:[UIColor colorWithRed:0.21f green:0.39f blue:0.93f alpha:1.00f]];self.window.rootViewController = rootVC;[self.window makeKeyAndVisible];return YES;}
方式二 导入你想要使用的控制器 如果只想使用导航栏控制器 可以新建一个导航栏控制器 继承HLNavigationController HLTabBarController和HLNavigationController 不相互依赖 都可以单独使用 注意:HLNavigationController依赖的文件有AnimationContoller 和 UINavigationBar+Alpha和UIImage+Extension!
CocoaPods 安装
HLMain is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'HLMain'
使用
导入#import "HLTabBarController.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{// Override point for customization after application launch.HLTabBarController *rootVC = [HLTabBarController tabBarControllerWithAddChildVCsBlock:^(HLTabBarController *tabBarC) {[tabBarC addChildVC:[HotViewController new] title:@"首页" normalImageName:@"home" selectedImageName:@"home_press"];[tabBarC addChildVC:[TopLineViewController new] title:@"我的" normalImageName:@"me" selectedImageName:@"me_press"];}];[rootVC tabBarConfigWithBarBackground:[UIColor colorWithRed:1.00f green:1.00f blue:1.00f alpha:1.00f]titleFont:[UIFont systemFontOfSize:12]normalTitleColor:[UIColor colorWithRed:0.56f green:0.60f blue:0.70f alpha:1.00f]selectedColor:[UIColor colorWithRed:0.21f green:0.39f blue:0.93f alpha:1.00f]];self.window.rootViewController = rootVC;[self.window makeKeyAndVisible];return YES;}
Author
2461414445@qq.com
License
HLMain is available under the MIT license. See the LICENSE file for more info.
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~