猎豆优选

ALPReflectionUtil.h 636B

12345678910111213141516171819202122232425
  1. //
  2. // ALPReflectionUtil.h
  3. // ALPLinkPartnerSDK
  4. //
  5. // Created by czp on 16/10/26.
  6. // Copyright © 2016年 czp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ALPReflectionUtil : NSObject
  10. + (id)getSharedInstance:(NSString *)className;
  11. + (id)getInstance:(NSString *)className instanceMethodName:(NSString *)instanceMethodName;
  12. + (id)getInstanceWithClazz:(id)clazz instanceMethodName:(NSString *)instanceMethodName;
  13. + (id)executeInstanceMethod:(NSString *)methodName instance:(id)instance params:(NSArray *)params;
  14. + (id)executeInstanceMethod:(NSString *)methodName instanceAndargs:(id)instance,...;
  15. @end