本文介绍了如何在运行时为UIBarButtonItem设置目标和操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
试过这个但只适用于UIButton:
Tried this but only works for UIButton:
[btn setTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
推荐答案
只需设置UIBarButtonItem的目标
和行动
属性直接。
Just set the UIBarButtonItem's target
and action
properties directly.
这篇关于如何在运行时为UIBarButtonItem设置目标和操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!