iOS開發-UI (六)Navigation

来源:http://www.cnblogs.com/fcug/archive/2017/01/19/6308951.html
-Advertisement-
Play Games

知識點: 1.UINavigationController 2.UINavigationItem 3.UINavigationBar 4.UINavigationController視圖切換 UINavigationController 1.什麼是導航控制器 作用:管理視圖控制器 2.UINavig ...


知識點:

1.UINavigationController

2.UINavigationItem

3.UINavigationBar

4.UINavigationController視圖切換

 

========================

UINavigationController

    1.什麼是導航控制器

作用:管理視圖控制器

 

    2.UINavigationController對象創建

      1)初始化方式

- (id)initWithRootViewController:(UIViewController *)rootViewController

 

      2)UINavigationController組成:

(1)navigationBar(高度44)

(2)customContent  — 有自定義的ViewController提供

(3)navigationToolbar(高度44)

 

 

    3.通過UINavigationController對象切換視圖

      1)將視圖控制器壓入導航控制器的棧容器中

- (void)pushViewController:(UIViewController *)viewController 

  animated:(BOOL)animated

      2)將視圖控制器從導航控制器中彈出

- (UIViewController *)popViewControllerAnimated:(BOOL)animated

  

========================

UINavigationItem

 

UINavigationItem包含了:

(1)backBarButtonItem(由上一級ctl的屬性決定)

(2)title/titleView(當前ctl)

(3)rightBarButtonItem(當前ctl)

(4)leftBarButtonItem(當前ctl)

 

 

    1.UINavigationItem和UIViewController關係

navigationItem是UIViewController的一個屬性

這個屬性是為UINavigationController服務的

 

 

    2.創建UIBarButtonItem

  1)創建系統自帶的UIBarButtonSystemItem

      - (id)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem 

      target:(id)target 

  action:(SEL)action;

 

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(btnAction)];

      2)文字UIBarButtonItem的創建方式

- (id)initWithTitle:(NSString *)title

      style:(UIBarButtonItemStyle)style

    target:(id)target

    action:(SEL)action

 

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem new];

 

      3)圖片UIBarButtonItem的創建方式

- (id)initWithImage:(UIImage *)image 

      style:(UIBarButtonItemStyle)style

    target:(id)target

    action:(SEL)action

 

self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"refresh_30"] style:UIBarButtonItemStylePlain target:nil action:nil];

 

      3)如何將UIBarButtonItem加入到導航的左邊和右邊

@property (nonatomic, retain) UIBarButtonItem *leftBarButtonItem

@property (nonatomic, retain) UIBarButtonItem *rightBarButtonItem

@property (nonatomic, retain) UIBarButtonItem *backBarButtonItem

 

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:b];

 

    3.定製UIBarButtonItem

 

    4.定製導航中間的titleView

self.navigationItem.title = @"控制器2";

 

    5.定製backBarButtonItem

      註意:設置當前控制器的backBarButtonItem需要在下一個控制器中才能顯示

 

 

========================

UINavigationBar

    1.如何往UINavigationBar貼圖

      設置背景圖片

      - (void)setBackgroundImage:(UIImage *)backgroundImage

    forBarMetrics:(UIBarMetrics)barMetrics

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"1.png"] forBarMetrics:UIBarMetricsDefault];

 

    2.如何設置UINavigationBar設置顏色

      @property (nonatomic, retain) UIColor *tintColor

      @property (nonatomic, retain) UIColor *barTintColor

 

    3.如何設置透明顏色

      1)設置UINavigationBar的樣式

      @property (nonatomic, assign) UIBarStyle barStyle

   self.navigationController.navigationBar.barStyle= UIBarStyleBlack;

 

      2)是否透明

@property (nonatomic, assign, getter=isTranslucent) BOOL translucent

 

//獲取管理當前視圖控制器的導航控制器(如果這個視圖控制器沒有受到導航控制器管理,此方法會返回空指針)

    //設置導航欄為不透明,坐標點會自動下移64個單位

    self.navigationController.navigationBar.translucent = NO;

 

      3)改變導航欄的顏色

@property(nonatomic,retain) UIColor *barTintColor 

 

//設置背景色

    self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1.0];

 

    4.如何隱藏UINavigationBar

      1)不帶動畫隱藏

      @property (nonatomic, getter=isNavigationBarHidden) BOOL  navigationBarHidden

 

//顯示

    self.navigationController.navigationBarHidden = NO;

 

      2)帶動畫隱藏

- (void) setNavigationBarHidden:(BOOL)navigationBarHidden 

      animated:(BOOL)animated

      [self.navigationController setNavigationBarHidden:YES animated:YES];

 

========================

UINavigationController視圖切換

    1.獲取導航控制器中的視圖數組

@property (nonatomic, copy) NSArray *viewControllers

 

    2.將視圖控制器壓入導航控制器的棧容器中

- (void)pushViewController:(UIViewController *)viewController 

  animated:(BOOL)animated

 

//視圖控制器入棧

    [self.navigationController pushViewController:ctlA animated:YES];

 

    3.將視圖控制器從導航控制器中彈出

- (UIViewController *)popViewControllerAnimated:(BOOL)animated

 

    4.切換至指定的視圖控制器(該控制器必須在當前導航控制器中的棧中)

- (NSArray *)popToViewController:(UIViewController *)viewController

                                animated:(BOOL)animated

    5.回到根視圖控制器

     - (NSArray *)popToRootViewControllerAnimated:(BOOL)animated

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 最近剛做完一個移動端的項目,產品之無敵,過程之艱辛,我就不多說了,記錄下在這個項目中遇到的問題,以防萬一,雖然這些可能都是已經被N多前輩解決掉了的問題,也放在這裡,算是為自己漫漫前端路鋪了一顆小石子兒吧,也在文末留下自己未能解決的疑問,希望看到的朋友能解惑。 都知道做移動端的開發,在電腦上調試好了的 ...
  • 項目中經常用到三角形,現在給大家講下用純CSS寫的下三角實心圖形 其他方向的三角圖形自己調樣式哈,舉一反三,不要這麼懶嘛,自己弄才會進步。 ...
  • 這是翻譯的一篇文章,原文是: "3 New CSS Features to Learn in 2017" ,翻譯的不是很好,如有疑問歡迎指出。 新的一年,我們有一系列新的東西要學習。儘管CSS有很多新的特性,但有三個特性令我最激動併進行學習。 1. Feature Queries(特性查詢) 在這之 ...
  • 今天學習的新內容是側滑導航欄,我想大家肯定都比較熟悉了,因為這個效果在qq裡面也有,最近一直跟室友們玩的游戲是快速讓自己的頭像的點贊量上千。當然我的效果跟qq是沒有辦法比的,因為那裡面的功能是在是太強大了。下麵我來展示一下我做的效果截圖。 我做的界面有點醜,但是對比之前已經是有了很大的改觀了。想做這 ...
  • 解決的辦法:在Build Settings >Aplle LLVM8.0 - Language - Objectibe-C >Weak Reference In Manual Retain Release 設置為YES。 ...
  • let systemFont = UIFont.systemFontOfSize(14)let otherFont = UIFont(descriptor: systemFont.fontDescriptor(), size: 16)以下是錯誤形式:let systemFont = UIFont.s... ...
  • 介紹 好久沒有寫博客啦,最近在接近新年了,年前的工作都要收尾,所以特別忙,周末抽空寫了個通用的載入view,寫篇博客分享出來。 功能 1、顯示載入視圖,載入失敗的時候顯示載入失敗視圖,數據為空時顯示數據為空視圖,支持為失敗視圖設置點擊事件重新載入數據。 2、支持個性化設置,自定義設置 載入、失敗、空 ...
  • 今天來到打開昨天的項目運行正常,然後改動了一點代碼編譯報錯: 把代碼改動的地方恢復還是一隻再報這個錯誤,想到了iOS開發中遇到莫名的錯誤第一步就是clean一下,重新編譯一下項目。Android Studio更好,直接有Rebuild功能(Build選項裡面),重新build項目後,錯誤消失,正常運 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...