[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将方法作为参数传递所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)