| 1234567891011121314151617 |
- //
- // CloudStorageTableView.h
- // zhuxun
- //
- // Created by winsoft on 17/6/21.
- //
- //
- #import <UIKit/UIKit.h>
- /**
- * 手势退出键盘专用
- */
- typedef void (^GestureResponseBlock)();
- @interface CloudStorageTableView : UITableView
- @property (nonatomic , strong) GestureResponseBlock gestureResponseBlock;
- @end
|