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