ios 導覽列風格

來源:互聯網
上載者:User

 

導航控制器可以用幾種不同的風格來顯示自身。預設風格就是標準的灰色外觀。目前支援三種不同的風格。

風 格

描 述

UIBarStyleDefault

預設風格;灰色背景,白色文字

UIBarStyleBlack

純黑色背景,白色文字

UIBarStyleBlackOpaque

純黑色背景,白色文字 

UIBarStyleBlackTranslucent

透明黑色背景,白色文字

風格是通過barStyle屬性來設定的。這個屬性屬於導航控制器,而不是視圖控制器,因此在各個視圖之間來回切換時,此屬性可以保持一致:

self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent; 

IOS中原文檔如下:

UIBarStyle
Defines the stylistic appearance of different types of views.

typedef enum {
 UIBarStyleDefault = 0,
 UIBarStyleBlack = 1,
 
 UIBarStyleBlackOpaque = 1, // Deprecated
 UIBarStyleBlackTranslucent = 2, // Deprecated
} UIBarStyle;
Constants
UIBarStyleDefault
Use the default style normally associated with the given view. For example, search bars and tool bars typically use a blue gradient background.
Available in iOS 2.0 and later.
Declared in UIInterface.h.


UIBarStyleBlack
Use an opaque black style.
Available in iOS 3.0 and later.
Declared in UIInterface.h.


UIBarStyleBlackOpaque
Deprecated. Use UIBarStyleBlack instead.
Available in iOS 2.0 and later.
Declared in UIInterface.h.

UIBarStyleBlackTranslucent
Deprecated. Use UIBarStyleBlack and set the translucent property to YES instead.
Available in iOS 2.0 and later.
Declared in UIInterface.h.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.