我想使用类方法来选择 UIBarButtonItem 的操作。
代码是:
[[UIBarButtonItem alloc]
initWithTitle:@"title"
style:UIBarButtonItemStylePlain
target: self
action:@selector(method)]
当我使用实例方法进行操作时,它可以工作。
但是当我使用类方法进行操作时,当我点击按钮时会发生错误。
错误信息是:unrecognized selector sent to instance
。
我不能为此使用类方法吗?
如何为目标设置使用,而不是自我?