从 id 获取 viewcontroller 名称,并且使用id调用获取的类方法。
代码:
UIViewController *view = (UIViewController*)self.objCurentCallLocation;
[view LocationCalledAndReturned];
从 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方法