zoukankan      html  css  js  c++  java
  • 如何设置backBarButtonItem的title和action

     

    1、为什么在UIViewController内设置了self.navigationItem.backBarButtonItem 对于导航栏显示的backBarButtonItem不起任何作用?

    首先我们得了解一下

    backBarButtonItem(其中当text属性太长时就会显示失败)

    leftBarButtonItem

    rightBarButtonItem

    他们都属于UINavigationItem的组成部分,都显示在navigationBar上,都属于UIBarButtonItem类

    backBarButtonItem和另外两兄弟是有区别的

    比如当前有AController准备push到BController,设置backBarButtonItem的title和image需要在AController内设置,在调用AController Push:B之前进行设置,AController.navigationItem.backBarButtonItem = ....

    而其他两兄弟则是在BController的ViewDidload后设置均可.

    backBarButtonItem的描述

    Discussion

    When this navigation item is immediately below the top item in the stack, the navigation controller derives the back button for the navigation bar from this navigation item. When this property is nil, the navigation item uses the value in its title property to create an appropriate back button. If you want to specify a custom image or title for the back button, you can assign a custom bar button item (with your custom title or image) to this property instead. When configuring your bar button item, do not assign a custom view to it; the navigation item ignores custom views in the back bar button anyway.

    说明了backBarButtonItem只能自定义image和title,不能重写target or action,系统会忽略其他的相关设置项。

    如果硬是需要重写action做一些其他的工作,则需要自定义一个leftBarButtonItem,因为系统定义leftBarButtonItem的显示优先级比backBarButtonItem优先级高,当存在leftBarButtonItem时,自动忽略backBarButtonItem,达到重写backBarButtonItem的目的。

    2、各个对象下的backBarButtonItem的区别

    对于这3兄弟,在3个类下面都能发现他们

    比如当前在一个UIViewController内,输入以下方法都能发现他们。(同leftBarButtonItem | rightBarButtonItem)

    self.navigationItem.backBarButtonItem

    self.navigationController.navigationItem.backBarButtonItem

    self.navigationController.navigationBar.backItem.backBarButtonItem

    比如在AController->BController,在A设置了self.navigationItem.backBarButtonItem,经过试验发现,这个backBarButtonItem为BController的self.navigationController.navigationBar.backItem.backBarButtonItem。

    UIViewController的属性navigationItem正是被当前UINavigationBar--[UINavigationBar appearance]管理的属性

     
    @property(nonatomic, readonly, retain)UINavigationItem *navigationItem

    The navigation item used to represent the view controller in a parent’s navigation bar. (read-only)


    self.navigationController.navigationItem.backBarButtonItem

    则是表示当前navigationController的parent的UINavigationBar,一般情况下没有这样的嵌套。

  • 相关阅读:
    C语言版本:单链表的实现(优化版本)
    C语言版本:单链表的实现
    C语言版本:顺序表的实现
    C++:多态浅析
    C++:同名隐藏和赋值兼容规则
    C++:钻石继承与虚继承
    C++:派生类的构造函数和析构函数的调用顺序
    Docker安装和使用
    Node10.15.0的安装
    碎碎叨叨
  • 原文地址:https://www.cnblogs.com/wangguimin/p/4561994.html
Copyright © 2011-2022 走看看