Added .gitignore

This commit is contained in:
Peter Iakovlev
2018-11-14 23:03:33 +04:00
commit 77ee5c4dab
869 changed files with 54858 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#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