MJTestViewController.h 659 B

12345678910111213141516171819202122
  1. // 代码地址: https://github.com/CoderMJLee/MJRefresh
  2. // 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000
  3. // MJTestViewController.h
  4. // MJRefreshExample
  5. //
  6. // Created by MJ Lee on 14-5-28.
  7. // Copyright (c) 2014年 小码哥. All rights reserved.
  8. //
  9. #import <UIKit/UIKit.h>
  10. #define MJPerformSelectorLeakWarning(Stuff) \
  11. do { \
  12. _Pragma("clang diagnostic push") \
  13. _Pragma("clang diagnostic ignored \"-Warc-performSelector-leaks\"") \
  14. Stuff; \
  15. _Pragma("clang diagnostic pop") \
  16. } while (0)
  17. @interface MJTestViewController : UIViewController
  18. @end