ビュー コントローラーを作成し、ナビゲーション バーへのポインターを作成する方法を探しています。ストーリーボードには、既に UINavigationBar があり、ここでジェスチャー部分を取得しました:
UILongPressGestureRecognizer* someGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:theNavBar action:@selector(paintGesture:)];
adminGesture.minimumPressDuration = 1; // recognize as soon as the touch goes down
//adminGesture.delegate = self;
[self.view addGestureRecognizer:adminGesture];
しかし、NavBar を呼び出す方法がわかりません
UINavigationItem*theNavBarTitle = self.navigationItem;
あれは正しいですか?私は何を間違っていますか?前もって感謝します。