

Nextrek
@ 69
Nextrek / iOS / StoryBoard / StoryBoard / VC / Shared / AboutVC.m
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
// // AboutVC.m // PocketVision // // Created by Fabrizio on 06/03/13. // Copyright (c) 2013 Odyssey. All rights reserved. // #import "AboutVC.h" @interface AboutVC () @end @implementation AboutVC - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { } return self; } - (void)viewDidLoad { [super viewDidLoad]; self.version.text = [NSString stringWithFormat:@"v. %@", APP_VERSION]; } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return NO; } - (IBAction) close { if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { [self dismissViewControllerAnimated:YES completion:nil]; } else { [[NSNotificationCenter defaultCenter] postNotificationName:@"CloseAbout" object:nil]; } } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; } @end |
Commits for Nextrek/iOS/StoryBoard/StoryBoard/VC/Shared/AboutVC.m
Revision | Author | Commited | Message |
---|---|---|---|
69 |
![]() |
Thu 23 Jan, 2014 14:40:00 +0000 | Storyboard real |