iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了objective-c – XCODE将方法作为参数传递大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

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

[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];
}

大佬总结

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

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。