欢迎光临
我们一直在努力

高仿客路旅游APP的UINavigationBar的扩展使用

建站超值云服务器,限时71元/月

高仿客路旅游APP的UINavigationBar的扩展使用

项目介绍:

高仿客路旅游APP的UINavigationBar的扩展使用。欢迎大家互相学习,感觉不错给个好评哟。


主要集成代码:
[Objective-C] 查看源文件 复制代码

self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:[TravelNavController new]];
    nav.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"demo0" image:nil selectedImage:nil];

    UINavigationController *nav0 = [[UINavigationController alloc]initWithRootViewController:[TravelNav0Controller new]];
    nav0.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"demo1" image:nil selectedImage:nil];
    UINavigationController *nav1 = [[UINavigationController alloc]initWithRootViewController:[TravelNav1Controller new]];
    nav1.tabBarItem = [[UITabBarItem alloc]initWithTitle:@"demo2" image:nil selectedImage:nil];
    UITabBarController *tabVC = [[UITabBarController alloc]init];
    tabVC.viewControllers = @[nav, nav0, nav1];
    self.window.rootViewController = tabVC;
    [self.window makeKeyAndVisible];

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 高仿客路旅游APP的UINavigationBar的扩展使用
分享到: 更多 (0)