简体   繁体   中英

How to disable toolbar item?

How can I disable toolbar item by tag?

I've tried this method:

for item in (navigationController?.toolbarItems)! {
    if item.tag == 1 {
        item.enabled = false   
    }
}

but I do not know why, it did not work. How can I fix my code?

在此处输入图片说明

My solution was:

var items = (navigationController?.toolbar.items)!
for item: UIBarButtonItem in items {
    if item.tag == 1 {
        item.enabled = true
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM