標籤:
iOS開發UINavigation系列一——導覽列UINavigtionBar 一、導覽列的使用
在iOS開發中,我們通常會使用導航控制器,導航控制器中封裝了一個UINavigationBar,實際上,我們也可以在不使用導航控制器的前提下,單獨使用導覽列,在UINavigationBar中,也有許多我們可以定製的屬性,用起來十分方便。
二、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,//黑色}
預設的風格就是我們上面看到的白色的風格,黑色的風格效果瑞如下:
三、導覽列常用屬性和方法
從上面我們可以看到,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;
四、導覽列中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;
五、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;
iOS開發UINavigation系列一——導覽列UINavigtionBar