微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

objective-c – XCODE将方法作为参数传递

我不想将方法作为参数传递给另一个方法,因此它知道在结束运行时调用方法.可能吗?

[self bringJSON:(Nsstring *)_passedValua:(NSObject *)anotherMethod];

解决方法

正如@Daniel在评论中提到的,你可以使用 selector.基本方案如下:

// Method declaration - method accept selector as parameter
- (void) bringJSON:(Nsstring *)_passedValua toMethod:(SEL)anotherMethod];

// Method call - create selector from method name (mind the colon in selector - it is required if your method takes 1 parameter) 
[self bringJSON:jsonString toMethod:@selector(methodName:)];

// Implementation
- (void) bringJSON:(Nsstring *)_passedValua toMethod:(SEL)anotherMethod]{
   ...
   if ([target respondsToSelector:anotherMethod])
      [target performSelector:anotherMethod withObject:_passedValua];
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐