123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // HWAboutViewController.m
- // Private-X
- //
- // Created by 余衡武 on 2022/3/25.
- //
- #import "HWAboutViewController.h"
- @interface HWAboutViewController ()
- @property (weak, nonatomic) IBOutlet UIView *header;
- @property (weak, nonatomic) IBOutlet UILabel *infoLabel;
- @end
- @implementation HWAboutViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self.header mas_updateConstraints:^(MASConstraintMaker *make) {
- make.height.mas_equalTo(NAVIHEIGHT);
- }];
-
- // 版本信息
- NSString *currentVersion = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
- NSString *text = [NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"application_version",nil),currentVersion];
- self.infoLabel.text = text;
- }
- - (IBAction)backBtnClick:(UIButton *)sender {
- [self.navigationController popViewControllerAnimated:YES];
- }
- @end
|