我有一个基础UIViewController
我使用故事板继承了我的应用中的一些基本内容。
我像这样实例化:
BasicContentViewController *targetController = [self.storyboard instantiateViewControllerWithIdentifier:@"ColorCouture"];
[self.navigationController pushFadeViewController:targetController];
OR
BasicContentViewController *targetController = [self.storyboard instantiateViewControllerWithIdentifier:@"Hospitality"];
[self.navigationController pushFadeViewController:targetController];
我有办法检查用于实例化UIViewControllers
的标识符吗?
我想确保我没有将每个控制器中的1个以上推到我的UIViewController
堆栈