首页 > 其他 > 详细

ViewController 之间的切换

时间:2014-08-05 00:21:38      阅读:311      评论:0      收藏:0      [点我收藏+]
 1 -(IBAction)btnRegisterClicked:(id)sender
 2 {
 3     if(secondViewController==nil)
 4     {
 5         secondViewController = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
 6     }
 7 
 8     [self.view.superview addSubview:secondViewController.view];
 9     [self.view removeFromSuperview];
10 }

 

ViewController 之间的切换,布布扣,bubuko.com

ViewController 之间的切换

原文:http://www.cnblogs.com/iflewless/p/3891160.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!