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

ios-根據id獲取viewcontroller名稱

編輯:編程綜合問答
根據id獲取viewcontroller名稱

id 獲取 viewcontroller 名稱,並且使用id調用獲取的類方法。
代碼:

UIViewController *view = (UIViewController*)self.objCurentCallLocation;
[view LocationCalledAndReturned];

最佳回答:


可以通過下面的代碼來判斷這個id類型是不是你想要的控制器

UIViewController *viewController = (UIViewController*)self.objCurentCallLocation;
if ([viewController isKindOfClass:[TestViewController class]]) {
       [((TestViewController *)viewController)  callMethodUnderTestViewController];
}

上面的代碼中,假設了一個已存在的TestViewController。判斷你當前拿到的這個viewController是TestViewController,如果是,則隱式轉換,並調用TestViewController中的pulic方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved