搜尋

首頁  >  問答  >  主體

ios - UICollectionView的头部无法使用pushViewController跳转,如何解决?

UICollectionView的头部中添加了一个按钮,想通过点击按钮跳转到另一个控制器,但是在UICollectionView的头部中无法使用[self.navigationController pushViewController:p animated:YES]这个方法跳转,有什么好解决方法吗??求教谢谢~!

PHP中文网PHP中文网2770 天前739

全部回覆(2)我來回復

  • ringa_lee

    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;
    }

    回覆
    0
  • 高洛峰

    高洛峰2017-04-18 09:42:17

    我測試了一下是可以跳轉的,你的navigation有值嗎?還是別的問題?能不能把問題具體一點,最好可以看程式碼。

    回覆
    0
  • 取消回覆