AboutViewController.m 776 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // AboutViewController.m
  3. // DSH
  4. //
  5. // Created by 张毅成 on 2018/10/15.
  6. // Copyright © 2018 WZX. All rights reserved.
  7. //
  8. #import "AboutViewController.h"
  9. @interface AboutViewController ()
  10. @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
  11. @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
  12. @end
  13. @implementation AboutViewController
  14. - (void)viewDidLoad {
  15. [super viewDidLoad];
  16. self.title = @"关于中国理论网";
  17. NSString *version = [NSString stringWithFormat:@"%@",[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]];
  18. self.labelTitle.text = [NSString stringWithFormat:@"当前版本 %@",version];
  19. self.view.backgroundColor = kBackgroundColor;
  20. [self.imageViewIcon setCorner];
  21. }
  22. @end