服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Swift - Swift之UITabBarController 导航控制器的自定义

Swift之UITabBarController 导航控制器的自定义

2020-12-21 14:50Swift教程网 Swift

本文给大家介绍swift导航控制器之UITabBarController,本文通过代码实例给大家讲解swift导航控制器,导航控制器类继承UITabBarController,代码简单易懂,需要的朋友可以参考下

swift导航控制器,导航控制器类继承UITabBarController,具体代码如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// AppDelegate.swift
// Housekeeper
//
// Created by 卢洋 on //.
// Copyright © 年 奈文摩尔. All rights reserved.
//
import Foundation
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
  var window: UIWindow?
  //var indexTab:UITabBarController?;
  func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // 应用程序启动后
    //.声明一个空视图
    self.window = UIWindow(frame: UIScreen.mainScreen().bounds);
    self.window!.backgroundColor=UIColor.whiteColor();
    //.导航背景颜色
    UINavigationBar.appearance().barTintColor=UIColor.appMainColor();
    UIBarButtonItem.appearance().setBackButtonTitlePositionAdjustment(UIOffsetMake(CGFloat(NSInteger.min),CGFloat(NSInteger.min)), forBarMetrics:UIBarMetrics.Default);
    //.导航标题文字颜色
    UINavigationBar.appearance().titleTextAttributes=NSDictionary(object:UIColor.whiteColor(), forKey:NSForegroundColorAttributeName) as? [String : AnyObject];
    //.将状态栏变为白色
    UIApplication.sharedApplication().statusBarStyle = UIStatusBarStyle.LightContent;
    //.设置返回按钮颜色
    UINavigationBar.appearance().tintColor=UIColor.whiteColor();
   //.指定根视图
    let rootView=NTViewController();
    self.window!.rootViewController=rootView;
    self.window!.makeKeyAndVisible();
    //.初始化键盘插件
    //let manage:IQKeyboardManager=IQKeyboardManager.sharedManager();
    //manage.enable=true;
    //manage.shouldResignOnTouchOutside=true;
    //manage.shouldToolbarUsesTextFieldTintColor=true;
    //manage.enableAutoToolbar=true;
    return true
  }
  func applicationWillResignActive(application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
  }
  func applicationDidEnterBackground(application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  }
  func applicationWillEnterForeground(application: UIApplication) {
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
  }
  func applicationDidBecomeActive(application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  }
  func applicationWillTerminate(application: UIApplication) {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  }
}

2.下面是我自定义的导航控制器类,继承 UITabBarController

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
 // NTViewController.swift
 // Housekeeper
 //
 // Created by 卢洋 on //.
 // Copyright © 年 奈文摩尔. All rights reserved.
 //
 import Foundation
 import UIKit
 class NTViewController:UITabBarController{
   //页面初始化
   override func viewDidLoad() {
     super.viewDidLoad();
     //.创建首页导航控制器
     let vwIndex=index();
     let navIndex=UINavigationController(rootViewController: vwIndex);
     navIndex.title="首页";
     navIndex.tabBarItem.image=UIImage(named: "home.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal); //默认显示图片
     navIndex.tabBarItem.selectedImage=UIImage(named: "homes.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal); //选中后的图片
     //.创建活动信息导航控制器
     let vwActivityInfo=activityInfo();
     let navActivityInfo=UINavigationController(rootViewController: vwActivityInfo);
     navActivityInfo.title="活动信息";
     navActivityInfo.tabBarItem.image=UIImage(named: "Activity-information.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     navActivityInfo.tabBarItem.selectedImage=UIImage(named: "Activity-informations.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     //.创建车辆展示导航控制器
     let vwCarDisplay=carDisplay();
     let navCarDisplay=UINavigationController(rootViewController: vwCarDisplay);
     navCarDisplay.title="车辆展示";
     navCarDisplay.tabBarItem.image=UIImage(named: "Vehicle-display.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     navCarDisplay.tabBarItem.selectedImage=UIImage(named: "Vehicle-displays.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     //.创建个人中心导航控制器
     let vwPersonalCenter=personalCenter();
     let navPersonalCenter=UINavigationController(rootViewController: vwPersonalCenter);
     navPersonalCenter.title="个人中心";
     navPersonalCenter.tabBarItem.image=UIImage(named: "Personal-Center.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     navPersonalCenter.tabBarItem.selectedImage=UIImage(named: "Personal-Centers.png")?.imageWithRenderingMode(UIImageRenderingMode.AlwaysOriginal);
     //.添加到工具栏
     let items=[navIndex,navActivityInfo,navCarDisplay,navPersonalCenter];
     self.viewControllers=items;
     self.navigationController?.navigationBar.tintColor=UIColor.whiteColor();
     //.自定义工具栏
     self.tabBar.backgroundColor=UIColor.clearColor();
     //底部工具栏背景颜色
     self.tabBar.barTintColor=UIColor.appMainColor();
     //.设置底部工具栏文字颜色(默认状态和选中状态)
     UITabBarItem.appearance().setTitleTextAttributes(NSDictionary(object:UIColor.whiteColor(), forKey:NSForegroundColorAttributeName) as? [String : AnyObject], forState:UIControlState.Normal);
     UITabBarItem.appearance().setTitleTextAttributes(NSDictionary(object:UIColor.blueWithTabbar(), forKey:NSForegroundColorAttributeName) as? [String : AnyObject], forState:UIControlState.Selected)
     //self.tabBar.tintColorDidChange()=UIColor.greenColor();
 //    let viewBar=UIView(frame:CGRectMake(,,UIScreen.mainScreen().bounds.width, ));
 //    viewBar.backgroundColor=UIColor(patternImage:UIImage(named:"TabbarBg.png")!);
 //    self.tabBar.insertSubview(viewBar, atIndex:)
 //    self.tabBar.opaque=true
 //    self.tabBar.tintColor=UIColor.appMainColor();
   }
 }

效果图如下:

Swift之UITabBarController 导航控制器的自定义

延伸 · 阅读

精彩推荐
  • SwiftSwift算法之栈和队列的实现方法示例

    Swift算法之栈和队列的实现方法示例

    Swift语言中没有内设的栈和队列,很多扩展库中使用Generic Type来实现栈或是队列。下面这篇文章就来给大家详细介绍了Swift算法之栈和队列的实现方法,需要...

    李峰峰10002021-01-05
  • SwiftSwift中排序算法的简单取舍详解

    Swift中排序算法的简单取舍详解

    对于排序算法, 通常简单的, 为大家所熟知的有, 选择排序, 冒泡排序, 快速排序, 当然还有哈希, 桶排序之类的, 本文仅比较最为常见的选择, 冒泡和快排,文...

    Castie111012021-01-10
  • SwiftSwift网络请求库Alamofire使用详解

    Swift网络请求库Alamofire使用详解

    这篇文章主要为大家详细介绍了Swift网络请求库Alamofire的使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    lv灬陈强56682021-01-06
  • Swift详解Swift 之clipped是什么如何用

    详解Swift 之clipped是什么如何用

    这篇文章主要介绍了详解Swift 之clipped是什么如何用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下...

    iCloudEnd8532021-05-28
  • SwiftSwift 基本数据类型详解总结

    Swift 基本数据类型详解总结

    在我们使用任何程序语言编程时,需要使用各种数据类型来存储不同的信息。变量的数据类型决定了如何将代表这些值的位存储到计算机的内存中。在声明...

    Lucky_William4672021-12-26
  • Swiftswift相册相机的权限处理示例详解

    swift相册相机的权限处理示例详解

    在iOS7以后要打开手机摄像头或者相册的话都需要权限,在iOS9中更是更新了相册相关api的调用,那么下面这篇文章主要给大家介绍了关于swift相册相机权限处...

    hello老文12682021-01-08
  • Swift分析Swift性能高效的原因

    分析Swift性能高效的原因

    绝大多数公司选择Swift语言开发iOS应用,主要原因是因为Swift相比Objc有更快的运行效率,更加安全的类型检测,更多现代语言的特性提升开发效率;这一系...

    louis_wang9092021-01-16
  • Swift浅谈在Swift中关于函数指针的实现

    浅谈在Swift中关于函数指针的实现

    这篇文章主要介绍了浅谈在Swift中关于函数指针的实现,是作者根据C语言的指针特性在Swifft中做出的一个实验,需要的朋友可以参考下...

    Swift教程网4372020-12-21