iOS中的導覽列UINavigationBar與工具列UIToolBar要點解析_IOS

來源:互聯網
上載者:User

一、導覽列UINavigationBar
1、導覽列的使用

在iOS開發中,我們通常會使用導航控制器,導航控制器中封裝了一個UINavigationBar,實際上,我們也可以在不使用導航控制器的前提下,單獨使用導覽列,在UINavigationBar中,也有許多我們可以定製的屬性,用起來十分方便。

2、UINavigationBar的建立和風格類型

導覽列繼承於UIView,所以我們可以像建立普通視圖那樣建立導覽列,比如我們建立一個高度為80的導覽列,將其放在ViewController的頭部,代碼如下:

UINavigationBar *bar = [[UINavigationBar alloc]initWithFrame:CGRectMake(0, 0, 320, 80)];
[self.view addSubview:bar];
效果如下:

我們也可以設定導覽列的風格屬性,從iOS6之後,UINavigationBar預設為半透明的樣式,從上面也可以看出,白色的導覽列下面透出些許背景的紅色。導覽列的風格屬性可以通過下面的屬性來設定:

@property(nonatomic,assign) UIBarStyle barStyle;
UIBarStyle是一個枚舉,其中大部分的樣式都已棄用,有效果的只有如下兩個:

typedef NS_ENUM(NSInteger, UIBarStyle) {
    UIBarStyleDefault          = 0,//預設
    UIBarStyleBlack            = 1,//黑色
}
預設的風格就是我們上面看到的白色的風格,黑色的風格效果瑞如下:

3、導覽列常用屬性和方法

從上面我們可以看到,iOS6後導覽列預設都是半透明的,我們可以通過下面的bool值來設定這個屬性,設定為NO,則導覽列不透明,預設為YES:

@property(nonatomic,assign,getter=isTranslucent) BOOL translucent;
下面一些方法用於設定NavigationBar及上面item的顏色相關屬性:

@property(null_resettable, nonatomic,strong) UIColor *tintColor;
tintColor這個屬性會影響到導覽列上左側pop按鈕的圖案顏色和字型顏色,系統預設是如下顏色:

@property(nullable, nonatomic,strong) UIColor *barTintColor;
BarTintColor用於設定導覽列的背景色,這個屬性被設定後,半透明的效果將失效:

- (void)setBackgroundImage:(nullable UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
- (nullable UIImage *)backgroundImageForBarMetrics:(UIBarMetrics)barMetrics;
上面兩個方法用於設定和擷取導覽列的背景圖案,這裡需要注意,預設背景圖案是不做縮放處理的,所以我們使用的圖片尺寸要和導覽列尺寸匹配,這裡面還有一個UIBarMetrics參數,這個參數設定裝置的狀態,如下:

typedef NS_ENUM(NSInteger, UIBarMetrics) {
    UIBarMetricsDefault,//正常豎屏狀態
    UIBarMetricsCompact,//橫屏狀態
};
//設定導覽列的陰影圖片
@property(nullable, nonatomic,strong) UIImage *shadowImage;
//設定導覽列的標題字型屬性
@property(nullable,nonatomic,copy) NSDictionary<NSString *,id> *titleTextAttributes;
標題字型屬性會影響到導覽列的中間標題,如下:

bar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor redColor]};

我們也可以通過下面的屬性設定導覽列標題的豎直位置位移:

- (void)setTitleVerticalPositionAdjustment:(CGFloat)adjustment forBarMetrics:(UIBarMetrics)barMetrics;
- (CGFloat)titleVerticalPositionAdjustmentForBarMetrics:(UIBarMetrics)barMetrics;
還有一個細節,導覽列左側pop按鈕的圖案預設是一個箭頭,我們可以使用下面的方法修改:

@property(nullable,nonatomic,strong) UIImage *backIndicatorImage;
@property(nullable,nonatomic,strong) UIImage *backIndicatorTransitionMaskImage;
4、導覽列中item的push與pop操作

UINavigationBar上面不只是簡單的顯示標題,它也將標題進行了堆棧的管理,每一個標題抽象為的對象在iOS系統中是UINavigationItem對象,我們可以通過push與pop操作管理item組。

//向棧中添加一個item,上一個item會被推嚮導航欄的左側,變為pop按鈕,會有一個動畫效果
- (void)pushNavigationItem:(UINavigationItem *)item animated:(BOOL)animated;
//pop一個item
- (nullable UINavigationItem *)popNavigationItemAnimated:(BOOL)animated;
//當前push到最上層的item
@property(nullable, nonatomic,readonly,strong) UINavigationItem *topItem;
//僅次於最上層的item,一般式被推嚮導航欄左側的item
@property(nullable, nonatomic,readonly,strong) UINavigationItem *backItem;
//擷取堆棧中所有item的數組
@property(nullable,nonatomic,copy) NSArray<UINavigationItem *> *items;
//設定一組item
- (void)setItems:(nullable NSArray<UINavigationItem *> *)items animated:(BOOL)animated;
5、UINavigationBarDelegate

在UINavigationBar中,還有如下一個屬性:

@property(nullable,nonatomic,weak) id<UINavigationBarDelegate> delegate;
通過代理,我們可以監控導覽列的一些push與pop操作:

//item將要push的時候調用,返回NO,則不能push
- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPushItem:(UINavigationItem *)item;
//item已經push後調用
- (void)navigationBar:(UINavigationBar *)navigationBar didPushItem:(UINavigationItem *)item;
//item將要pop時調用,返回NO,不能pop 
- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item;
//item已經pop後調用
- (void)navigationBar:(UINavigationBar *)navigationBar didPopItem:(UINavigationItem *)item;

二、工具列UIToolBar
導覽列一般會出現在視圖的頭部,與之相對,工具列一般會出現在視圖的的底部,上面可以填充一些按鈕,提供給使用者一些操作。建立一個工具列如下:
self.view.backgroundColor = [UIColor grayColor];
UIToolbar * tool = [[UIToolbar alloc]initWithFrame:CGRectMake(0, self.view.frame.size.height-40, 320, 40)];
[self.view addSubview:tool];

下面是UIToolBar中的一些方法,其中大部分在UINavigationBar中都有涉及,這裡只做簡單的介紹:

//工具列的風格,和導覽列類似,有黑白兩種
@property(nonatomic) UIBarStyle barStyle;
//設定工具列上按鈕數組
@property(nullable,nonatomic,copy) NSArray<UIBarButtonItem *> *items;
//設定工具列是否透明
@property(nonatomic,assign,getter=isTranslucent) BOOL translucent;
//設定工具列按鈕
- (void)setItems:(nullable NSArray<UIBarButtonItem *> *)items animated:(BOOL)animated;
//設定item風格顏色
@property(null_resettable, nonatomic,strong) UIColor *tintColor;
//設定工具列背景色
@property(nullable, nonatomic,strong) UIColor *barTintColor;
//設定工具列背景和陰影圖案
- (void)setBackgroundImage:(nullable UIImage *)backgroundImage forToolbarPosition:(UIBarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics;
- (nullable UIImage *)backgroundImageForToolbarPosition:(UIBarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics;
- (void)setShadowImage:(nullable UIImage *)shadowImage forToolbarPosition:(UIBarPosition)topOrBottom;
- (nullable UIImage *)shadowImageForToolbarPosition:(UIBarPosition)topOrBottom;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.