Heim > Fragen und Antworten > Hauptteil
在UICollectionView
的头部中添加了一个按钮,想通过点击按钮跳转到另一个控制器,但是在UICollectionView
的头部中无法使用[self.navigationController pushViewController:p animated:YES]
这个方法跳转,有什么好解决方法吗??求教谢谢~!
ringa_lee2017-04-18 09:42:17
把下面的代码当做category放到你的项目中。
在view 里面,可以通过,[self.viewController.navigationController pushViewController:p animated:YES]进行跳转。
//获取某个view所在的控制器
- (UIViewController *)viewController {
UIViewController *viewController = nil;
UIResponder *next = self.nextResponder;
while (next) {
if ([next isKindOfClass:[UIViewController class]]) {
viewController = (UIViewController *)next;
break;
}
next = next.nextResponder;
}
return viewController;
}