• iOS中设置backBarButtonItem的title和action


    一、 设置title

    在需要显示该返回键的前一个Controller中设置

       1:   navigationItem.backBarButtonItem = UIBarButtonItem(title: "注销", style: UIBarButtonItemStyle.Plain, target: nil, action: nil)

    二、添加返回时执行Action:

    你可以尝试一下在上一行代码中的target和action处填入事件监听的处理方法,但是不会起作用的。

    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的目的。

    注意点

    一般我们取导航控制器上的Item这样取:

    navigationItem.backbarItem

    如果这样表示套了两层的导航栏的最外面那层的Item,一般情况下没有这样的嵌套。

    navigationController.navigationItem.backBarButtonItem

    Ref:

    http://blog.csdn.net/dreamno23/article/details/21085783

    http://www.cnblogs.com/ihojin/p/change-backbarbuttonitem-text.html

  • 相关阅读:
    git 常用命令
    mac 显示隐藏文件
    android 图片缓存
    字符串与枚举相互转换
    ios 消息通知
    ios 真机调试
    ios 宏定义 系统版本 判定
    autolayout autoresizing
    c++对象创建带括号与无括号的区别
    内存对齐
  • 原文地址:https://www.cnblogs.com/zeyang/p/4493692.html
Copyright © 2020-2023  润新知