Swiftgram/Telegram/Watch/Extension/TGStickersSectionHeaderController.m
2020-02-19 18:44:10 +04:00

24 lines
418 B
Objective-C

#import "TGStickersSectionHeaderController.h"
#import "TGWatchCommon.h"
NSString *const TGStickersSectionHeaderIdentifier = @"TGStickersSectionHeader";
@implementation TGStickersSectionHeaderController
- (NSString *)title
{
return self.titleLabel.text;
}
- (void)setTitle:(NSString *)title
{
self.titleLabel.text = title;
}
+ (NSString *)identifier
{
return TGStickersSectionHeaderIdentifier;
}
@end