1234567891011121314151617181920212223242526272829 |
- //
- // AboutViewController.m
- // DSH
- //
- // Created by 张毅成 on 2018/10/15.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import "AboutViewController.h"
- @interface AboutViewController ()
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
- @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
- @end
- @implementation AboutViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.title = @"关于中国理论网";
- NSString *version = [NSString stringWithFormat:@"%@",[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]];
- self.labelTitle.text = [NSString stringWithFormat:@"当前版本 %@",version];
- self.view.backgroundColor = kBackgroundColor;
- [self.imageViewIcon setCorner];
- }
- @end
|