ビューコントローラーのプロパティとして保存された多数のポップアップビューがあります。これらは、表示されているときにのみビューに追加され、非表示になっているときにビューから削除されます。すべてが機能していましたが、コードを変更して単純化したところ、機能しなくなりました。
ジェスチャ認識エンジンを作成して追加する方法の例を次に示します。
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hidePopUpView:)];
[self.totalPowerPopUpView addGestureRecognizer:tapGestureRecognizer];
[self.co2PopUpView addGestureRecognizer:tapGestureRecognizer];
ビューは、UIButton を押すことによってトリガーされるセレクターによって表示されます (通常、カスタム ビュー プロパティを設定する if ステートメントには他のコードがありますが、簡単にするために省略しています)。
- (void)showPopUpView:(UIButton*)sender
{
CGRect endFrame = CGRectMake(10, 10, 300, 400);
UIView *popUpView;
if (sender == self.totalPowerInfoButton)
{
[self.view addSubview:self.totalPowerPopUpView];
popUpView = self.totalPowerPopUpView;
}
if (sender == self.co2LevelInfoButton)
{
[self.view addSubview:self.co2PopUpView];
popUpView = self.co2PopUpView;
}
[UIView animateWithDuration:0.5
animations:^ {
popUpView.alpha = 1.0;
popUpView.frame = endFrame;
}];
}
popUpView は存在しますが、タップしてもジェスチャ認識セレクターが呼び出されません。なぜだめですか?