18 lines
222 B
Objective-C
18 lines
222 B
Objective-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
|
|
|