dkahgld

NSObject+FMSwizzling.h 500B

12345678910111213141516171819
  1. //
  2. // NSObject+FMSwizzling.h
  3. // FMListPlaceholderExample
  4. //
  5. // Created by Mingo on 2018/8/9.
  6. // Copyright © 2017年 袁凤鸣. All rights reserved.
  7. // 项目地址:https://github.com/yfming93/FMListPlaceholder
  8. // 作者博客:https://www.yfmingo.cn
  9. //
  10. #import <Foundation/Foundation.h>
  11. #import <objc/runtime.h>
  12. @interface NSObject (FMSwizzling)
  13. + (void)fm_methodSwizzlingWithOriginalSelector:(SEL)originalSelector
  14. bySwizzledSelector:(SEL)swizzledSelector;
  15. @end