使用目标 C 中另一个类的方法设置操作
是否可以使用另一个类的方法设置操作?有示例代码吗??
is it possible to set an action using method from another class?? Is there any example code??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如按钮的操作?
以编程方式将类似于:
只要您有对按钮的引用,这可以写在任何地方,在视图控制器中,在视图本身内部等。 ;)
EDIT
performSelector:...
方法使接收者执行一个方法。所以,在你的情况下,它会是:因为
self
不会执行任何正确的操作?正在执行某些操作的人将是objectName
action of a button for example?
programmatically will be something like:
this can be written anywhere, in your view controller, inside the view itself , etc as long as you have a reference to the button. ;)
EDIT
performSelector:...
methods makes the receiver perform a method. So, in your case it would be:because
self
won't perform anything right? the one who is performing something will beobjectName