mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
348 B
Objective-C
21 lines
348 B
Objective-C
#import "TGGroupInfoFooterController.h"
|
|
|
|
NSString *const TGGroupInfoFooterIdentifier = @"TGGroupInfoFooter";
|
|
|
|
@implementation TGGroupInfoFooterController
|
|
|
|
- (IBAction)buttonPressedAction
|
|
{
|
|
if (self.buttonPressed != nil)
|
|
self.buttonPressed();
|
|
}
|
|
|
|
#pragma mark -
|
|
|
|
+ (NSString *)identifier
|
|
{
|
|
return TGGroupInfoFooterIdentifier;
|
|
}
|
|
|
|
@end
|