mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
418 B
Objective-C
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
|