LoginSignup
7
7

More than 5 years have passed since last update.

[iOS7]navigation PopGestureが効かなくなる問題解消

Posted at

現象

iOS7でnavigationViewController 使ってるのであればデフォルトpopGestureがYESに状態になっているはずだが,back buttonをカスタマイズしたら効かなくなる現象に気づいた。
解決法は結構簡単〜interactivePopGestureRecognizerをdelegate設定し直せば復活~~

コード

    self.navigationItem.leftBarButtonItem = [MySuperTheme backButton];

    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) { //iOS6サポートするための判定

        self.navigationController.interactivePopGestureRecognizer.delegate = (id <UIGestureRecognizerDelegate> )self;
    }
7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7