반응형
storyboard id
-------------------------------------------------------------------------------------------------------------------------
NFSActivityWorkoutView *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"NFSActivityWorkoutView"];
[self presentViewController:vc animated:YES completion:nil];
-------------------------------------------------------
-------------------------------------------------------
segue name
[self performSelector:@selector(sendingNext) withObject:nil afterDelay:1.0];
- (void)sendingNext {
[self performSegueWithIdentifier:@"Workout" sender:self];
}
-------------------------------------------------------
반응형
'모바일개발(Mobile Dev) > IOS개발(ObjectC)' 카테고리의 다른 글
UIApplicationDidEnterBackgroundNotification UIApplicationWillEnterForegroundNotification (0) | 2015.12.27 |
---|---|
How to use UIAlertController (0) | 2015.12.27 |
Understanding Backgrounding (0) | 2015.12.27 |
Strategies for Handling App State Transitions (0) | 2015.12.27 |
difference between viewWillAppear viewDidAppear (0) | 2015.12.27 |