mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01: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
|