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

objective-c – XCODE将方法作为参数传递,第1张

概述我不想将方法作为参数传递给另一个方法,因此它知道在结束运行时调用的方法.可能吗? [self bringJSON:(NSString *)_passedValua:(NSObject *)anotherMethod]; 正如@Daniel在评论中提到的,你可以使用 selector.基本方案如下: // Method declaration - method accept selector as 我不想将方法作为参数传递给另一个方法,因此它知道在结束运行时调用的方法.可能吗? @H_502_7@

@H_502_7@

[self bringJsON:(Nsstring *)_passedValua:(NSObject *)anotherMethod];
解决方法 正如@DanIEl在评论中提到的,你可以使用 selector.基本方案如下: @H_502_7@

@H_502_7@

// 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];}
总结

以上是内存溢出为你收集整理的objective-c – XCODE将方法作为参数传递全部内容,希望文章能够帮你解决objective-c – XCODE将方法作为参数传递所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1033939.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存