程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-加載主ViewController

ios-加載主ViewController

編輯:編程綜合問答
加載主ViewController

有一個root的ViewController 類,調用OnlineViewController的視圖:

- (void)eventTap:(UIGestureRecognizer *)gestureRecognizer {

self.evc = [[EventViewController alloc]init];    
[self presentViewController:self.evc animated:YES completion:nil];
}

嘗試從OnlineViewController中調用ViewController的視圖時失敗了。

-(void ) iconAction{
self.vc = [[ViewController alloc]init];

[self presentViewController:self.vc animated:YES completion:nil];

如何調用ViewController的視圖?

最佳回答:


主viewController 通過presentViewController:animated:completion: 方法彈出新視圖EventViewController 你如果想在彈出的視圖中返回到主視圖,關閉這個彈出視圖即可

在EventViewController 的-(void)iconAction: 中調用

[self dismissViewControllerAnimated:YES completion:nil];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved