Files
TGPassportKit/Example-iOS/Source/SettingsViewController.m
Ilya Laktyushin bae6e9a1d2 Initial commit
2018-07-26 15:04:25 +03:00

18 lines
402 B
Objective-C

#import "SettingsViewController.h"
#import "Constants.h"
@implementation SettingsViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.botIdView.text = [NSString stringWithFormat:@"%d", ExampleBotId];
self.publicKeyView.text = ExampleBotPublicKey;
}
- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath {
return NO;
}
@end