mirror of
https://github.com/danog/Telegram.git
synced 2024-11-30 04:29:15 +01:00
15 lines
279 B
Objective-C
15 lines
279 B
Objective-C
#import "TGTableViewCell.h"
|
|
|
|
@implementation TGTableViewCell
|
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
|
|
{
|
|
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
|
|
if (self)
|
|
{
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|