Swiftgram/Watch/Extension/TGAudioMicAlertController.m
2018-11-14 23:03:33 +04:00

19 lines
410 B
Objective-C

#import "TGAudioMicAlertController.h"
#import "TGWatchCommon.h"
NSString *const TGAudioMicAlertControllerIdentifier = @"TGAudioMicAlertController";
@implementation TGAudioMicAlertController
- (void)configureWithContext:(id<TGInterfaceContext>)context
{
self.alertLabel.text = TGLocalized(@"Watch.Microphone.Access");
}
+ (NSString *)identifier
{
return TGAudioMicAlertControllerIdentifier;
}
@end