12 lines
387 B
Objective-C
12 lines
387 B
Objective-C
#import "UIKit/UIKit.h"
|
|
|
|
@interface EventCenterEmptyCell : UITableViewCell
|
|
|
|
+ (CGFloat)cellHeight;
|
|
+ (void)registerTo:(UITableView *)tableView withCustomID:(NSString *)cid;
|
|
+ (EventCenterEmptyCell *)cellFor:(UITableView *)tableView
|
|
customID:(NSString *)cid
|
|
atIndexPath:(NSIndexPath *)indexPath;
|
|
- (void)updateTitle:(NSString *)title;
|
|
@end
|