ViewController2.m 848 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ViewController2.m
  3. // Appcircle
  4. //
  5. // Created by Dogan Ekici on 5.11.2019.
  6. // Copyright © 2019 Dogan Ekici. All rights reserved.
  7. //
  8. #import "ViewController2.h"
  9. @interface ViewController2 ()
  10. @end
  11. @implementation ViewController2
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.lblVersion.text = [NSString stringWithFormat:@"v%@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]];;
  15. // Do any additional setup after loading the view.
  16. }
  17. /*
  18. #pragma mark - Navigation
  19. // In a storyboard-based application, you will often want to do a little preparation before navigation
  20. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  21. // Get the new view controller using [segue destinationViewController].
  22. // Pass the selected object to the new view controller.
  23. }
  24. */
  25. @end