在IOS 8中,它有一個新功能來在滑動時隱藏欄。所以我試了一下。但是,它禁用了我的其他刷卡。代碼是這樣的:IOS navigationController.hidesBarsOnSwipe diabled其他刷卡
self.navigationController.hidesBarsOnSwipe = YES;
// The follow code works if I comment out the above line
UISwipeGestureRecognizer *swipe = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(backBarButtonItemPressed:)];
[swipe setDirection:UISwipeGestureRecognizerDirectionRight];
[swipe setNumberOfTouchesRequired:1];
[self.view addGestureRecognizer:swipe];
[self.webView.scrollView.panGestureRecognizer requireGestureRecognizerToFail:swipe];
有沒有人有類似的問題?
謝謝。
添加以下代碼,但它不工作。正確的輕掃仍然不起作用。 self.navigationController.hidesBarsOnSwipe = YES; – user890207 2014-10-02 15:50:34