mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 01:19:42 +01:00
21 lines
348 B
Mathematica
21 lines
348 B
Mathematica
|
#import "TGGroupInfoFooterController.h"
|
||
|
|
||
|
NSString *const TGGroupInfoFooterIdentifier = @"TGGroupInfoFooter";
|
||
|
|
||
|
@implementation TGGroupInfoFooterController
|
||
|
|
||
|
- (IBAction)buttonPressedAction
|
||
|
{
|
||
|
if (self.buttonPressed != nil)
|
||
|
self.buttonPressed();
|
||
|
}
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
|
+ (NSString *)identifier
|
||
|
{
|
||
|
return TGGroupInfoFooterIdentifier;
|
||
|
}
|
||
|
|
||
|
@end
|