欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

iOS狀態(tài)欄、導(dǎo)航欄的一些筆記分享

 更新時(shí)間:2019年04月08日 11:19:29   作者:QiShare  
這篇文章主要給大家分享了關(guān)于iOS中狀態(tài)欄、導(dǎo)航欄的一些筆記,文中通過示例代碼介紹的非常詳細(xì),對(duì)各位iOS開發(fā)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧

前言

IOS的界面分為狀態(tài)欄和導(dǎo)航欄,如下圖所示:

狀態(tài)欄與導(dǎo)航欄的位置如上圖,我們可以通過[UIApplication sharedApplication].statusBarFrame.size獲取狀態(tài)欄的size(一般沒有劉海時(shí)的高度為20,有劉海時(shí)的高度為44)。

通過self.navigationController.navigationBar.frame.size獲取導(dǎo)航欄的size(一般高度為44,大標(biāo)題時(shí)高度為xyz,當(dāng)然也可以通過自定義來改變導(dǎo)航欄樣式)。

***ps:***在我們通過[nav.navigationBar setBarTintColor:[UIColor lightGrayColor]];來設(shè)置導(dǎo)航欄顏色時(shí),將導(dǎo)致導(dǎo)航欄和狀態(tài)欄背景色均變?yōu)闇\灰色。

1. 狀態(tài)欄內(nèi)容是否高亮

狀態(tài)欄內(nèi)容包括信號(hào)、時(shí)間、電量等,只有兩種顏色樣式(黑或白)。iOS開發(fā)過程中提供修改狀態(tài)欄內(nèi)容顏色樣式的方法:

在代碼中設(shè)置狀態(tài)欄內(nèi)容顏色:info.plist文件中直接設(shè)置狀態(tài)欄內(nèi)容顏色:在info.plist中添加字段View controller-based status bar appearance, 當(dāng)其取值為YES時(shí),表示以UIController對(duì)狀態(tài)欄的設(shè)置為準(zhǔn),UIApplication對(duì)狀態(tài)欄進(jìn)行的設(shè)置將不起作用。

// 在controller中重寫該方法,并返回相應(yīng)值
- (UIStatusBarStyle)preferredStatusBarStyle {
 
 return UIStatusBarStyleLightContent;
}

// 注意:
// 當(dāng)controller嵌入U(xiǎn)INavigationController中時(shí),controller中的方法preferredStatusBarStyle是不會(huì)自動(dòng)被調(diào)用的,而navController中的該方法會(huì)被調(diào)用;
// 當(dāng)有navController時(shí),在重寫controller中的preferredStatusBarStyle方法同時(shí),我們還應(yīng)重寫navController中的childViewControllerForStatusBarStyle方法。
- (UIViewController *)childViewControllerForStatusBarStyle {
 
 return self.topViewController;
}

當(dāng)字段View controller-based status bar appearance取值為NO時(shí),則以UIApplication為準(zhǔn),控制器設(shè)置狀態(tài)欄的方法preferredStatusBarStyle則根本不會(huì)被調(diào)用。

// 狀態(tài)欄內(nèi)容-黑色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
// 狀態(tài)欄內(nèi)容-白色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

在info.plist文件中直接設(shè)置狀態(tài)欄內(nèi)容顏色:字段View controller-based status bar appearance取值為NO,且Status bar style取值為UIStatusBarStyleLightContent(可選),則不寫代碼,也可控制應(yīng)用中的狀態(tài)欄內(nèi)容顏色。

2. 隱藏狀態(tài)欄

整個(gè)項(xiàng)目隱藏在Targets -> General -> 勾選 Hide status bar 即可。

在單個(gè)界面中隱藏

// iOS 9.0 之前
// 隱藏=YES,顯示=NO; Animation:動(dòng)畫效果
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];

// iOS 9.0 之后推薦使用這個(gè)
// 注意:該方法可以通過UIController中的方法setNeedsStatusBarAppearanceUpdate來間接調(diào)用
- (BOOL)prefersStatusBarHidden {
 
 return YES;
}

注意:上面兩個(gè)操作狀態(tài)方法依然受到Info.plist中字段View controller-based status bar appearance取值得影響,該字段取值為YES時(shí),進(jìn)入controller會(huì)自動(dòng)調(diào)用prefersStatusBarHidden方法。當(dāng)controller嵌入U(xiǎn)INavigationController中時(shí),controller中的方法prefersStatusBarHidden是不會(huì)自動(dòng)被調(diào)用的,而navController中的該方法會(huì)被調(diào)用;當(dāng)有navController時(shí),在重寫controller中的prefersStatusBarHidden方法同時(shí),我們還應(yīng)重寫navController中的childViewControllerForStatusBarHidden方法。

- (UIViewController *)childViewControllerForStatusBarHidden {
 
 return self.topViewController;
}

啟動(dòng)頁隱藏狀態(tài)欄,進(jìn)入程序后正常顯示狀態(tài)欄
首先,在Targets->General->勾選中Hide status bar或者在info.plist里面 Status bar is initially hidden 設(shè)置為 YES;
其次,在AppDelegate.m中添加代碼

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
 [application setStatusBarHidden:NO withAnimation:UIStatusBarAnimationFade];
}

3. 導(dǎo)航欄


UINavigationController的視圖層次結(jié)構(gòu)比較清晰,用戶可見的導(dǎo)航欄即為其中的***UINavigationBar***,通過它,我們就可以修改導(dǎo)航欄的樣式。下面我們就逐步介紹一些常用的關(guān)于導(dǎo)航欄的操作。

導(dǎo)航欄常用操作

// 隱藏導(dǎo)航欄
//[self.navigationController setNavigationBarHidden:YES];
[self.navigationController setNavigationBarHidden:YES animated:YES];

// 設(shè)置導(dǎo)航背景為紅色
[self.navigationController.navigationBar setBarTintColor:[UIColor redColor]];

// 設(shè)置navigationBar的透明效果
[self.navigationController.navigationBar setTranslucent:YES]; 
//設(shè)置導(dǎo)航欄的背景圖片
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"imgName"] forBarMetrics:UIBarMetricsDefault];

// Attributes 屬性
NSDictionary *textAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:30]};
// 設(shè)置導(dǎo)航欄標(biāo)題的字體大小、顏色
[self.navigationController.navigationBar setTitleTextAttributes:textAttributes];

4. 導(dǎo)航欄常用樣式

在日常開發(fā)中,我們經(jīng)常需要修改導(dǎo)航欄樣式,如使導(dǎo)航欄透明、導(dǎo)航欄尺寸等,在不同樣式導(dǎo)航欄之間的切換時(shí)還要注意是否平順...(隱藏,與正常導(dǎo)航欄的切換)

導(dǎo)航欄大標(biāo)題

if (@available(iOS 11.0, *)) {
  [self.navigationController.navigationBar setPrefersLargeTitles:YES];
}

自定義導(dǎo)航欄大標(biāo)題樣式

重寫UINavigationBar中的layoutSubviews方法,可通過發(fā)送通知的形式來監(jiān)聽導(dǎo)航欄高度變化,如下:

-(void)layoutSubviews {
 [super layoutSubviews];
 
 [[NSNotificationCenter defaultCenter] postNotificationName:KEY_UINavigationBar_Height_Changed object:self userInfo:nil];
}

使導(dǎo)航欄透明

當(dāng)需要設(shè)置導(dǎo)航欄透明且title等項(xiàng)正常顯示時(shí),最好將設(shè)置過程置于viewWillAppear:方法中:

//// 需要導(dǎo)航欄透明的ViewController中
- (void)viewWillAppear:(BOOL)animated {
 
 [super viewWillAppear:animated];
 
 _navView.hidden = NO;
 self.edgesForExtendedLayout = UIRectEdgeTop;
 self.navigationController.navigationBar.translucent = YES;
 [self.navigationController.navigationBar setShadowImage:[UIImage new]];
 [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
 [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
}

//// 導(dǎo)航欄為非透明的ViewController中
- (void)viewWillAppear:(BOOL)animated {
 
 [super viewWillAppear:animated];
 
 self.edgesForExtendedLayout = UIRectEdgeNone;
 self.navigationController.navigationBar.translucent = NO;
 [self.navigationController.navigationBar setShadowImage:nil];
 [self.navigationController.navigationBar setTintColor:[UIColor blackColor]];
 [self.navigationController.navigationBar setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
 [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor blackColor]}];
}

關(guān)于自定義導(dǎo)航欄、tabBar的例子將在后續(xù)文章中介紹...

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。

相關(guān)文章

  • iOS實(shí)現(xiàn)鎖屏頁面控制音樂播放

    iOS實(shí)現(xiàn)鎖屏頁面控制音樂播放

    這篇文章主要為大家詳細(xì)介紹了iOS實(shí)現(xiàn)鎖屏頁面控制音樂播放,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-12-12
  • iOS中添加文本鏈接和圖片示例代碼

    iOS中添加文本鏈接和圖片示例代碼

    這篇文章主要給大家介紹了關(guān)于iOS中添加文本鏈接和圖片的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面跟著小編一起來學(xué)習(xí)學(xué)習(xí)吧。
    2017-07-07
  • IOS使用UICollectionView實(shí)現(xiàn)無限輪播效果

    IOS使用UICollectionView實(shí)現(xiàn)無限輪播效果

    這篇文章主要為大家詳細(xì)介紹了IOS使用UICollectionView實(shí)現(xiàn)無限輪播效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-03-03
  • iOS應(yīng)用開發(fā)中視圖控件UIWindow的基本使用教程

    iOS應(yīng)用開發(fā)中視圖控件UIWindow的基本使用教程

    這篇文章主要介紹了iOS應(yīng)用開發(fā)中視圖控件UIWindow的基本使用教程,代碼基于傳統(tǒng)的Objective-C,需要的朋友可以參考下
    2016-02-02
  • IOS 長鏈接與短鏈接之間的轉(zhuǎn)換

    IOS 長鏈接與短鏈接之間的轉(zhuǎn)換

    這篇文章主要介紹了IOS 長鏈接與短鏈接之間的轉(zhuǎn)換的相關(guān)資料,需要的朋友可以參考下
    2017-06-06
  • IOS使用progssview仿滴滴打車圓形計(jì)時(shí)

    IOS使用progssview仿滴滴打車圓形計(jì)時(shí)

    本文給大家分享的是IOS中實(shí)現(xiàn)仿滴滴打車的原型計(jì)時(shí)效果,非常的實(shí)用,有需要的小伙伴可以參考下。
    2015-07-07
  • IOS在Table View添加3D Touch功能

    IOS在Table View添加3D Touch功能

    在IOS開發(fā)中教給大家如何在Table View中添加 3D Touch Peek & Pop的功能,需要的朋友學(xué)習(xí)一下吧。
    2017-12-12
  • 零基礎(chǔ)學(xué)習(xí)iOS直播之播放

    零基礎(chǔ)學(xué)習(xí)iOS直播之播放

    對(duì)于直播來說,客戶端主要做兩件事情,推流和播放。本篇主要對(duì)播放進(jìn)行詳細(xì)介紹,需要的朋友一起來看下吧
    2016-12-12
  • IOS Xcode調(diào)試常用命令和斷點(diǎn)整理

    IOS Xcode調(diào)試常用命令和斷點(diǎn)整理

    這篇文章主要介紹了IOS Xcode調(diào)試常用命令和斷點(diǎn)整理的相關(guān)資料,這里對(duì)IOS Xcode調(diào)試常用命令進(jìn)行了總結(jié),需要的朋友可以參考下
    2016-12-12
  • iOS masonry的使用方法

    iOS masonry的使用方法

    這篇文章主要介紹了iOS masonry的基本使用方法的相關(guān)資料,文章還介紹了CocoaPods的安裝過程,需要的朋友可以參考下面文字內(nèi)容
    2021-09-09

最新評(píng)論