2
0

MJTestViewController.h 501 B

123456789101112131415161718192021
  1. // 代码地址: https://github.com/CoderMJLee/MJRefresh
  2. // MJTestViewController.h
  3. // MJRefreshExample
  4. //
  5. // Created by MJ Lee on 14-5-28.
  6. // Copyright (c) 2014年 小码哥. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define MJPerformSelectorLeakWarning(Stuff) \
  10. do { \
  11. _Pragma("clang diagnostic push") \
  12. _Pragma("clang diagnostic ignored \"-Warc-performSelector-leaks\"") \
  13. Stuff; \
  14. _Pragma("clang diagnostic pop") \
  15. } while (0)
  16. @interface MJTestViewController : UIViewController
  17. @end