18 lines
222 B
C
18 lines
222 B
C
|
|
//
|
||
|
|
// BaseTableView.h
|
||
|
|
// keyBoard
|
||
|
|
//
|
||
|
|
// A lightweight UITableView subclass for common defaults.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface BaseTableView : UITableView
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|
||
|
|
|