我有一些带有手势识别器的 UIBarButtonItems:
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(undoButtonLongPress:)];
[[undoButton valueForKey:@"view"]addGestureRecognizer:longPress];
一切都按预期工作,但是当我在故事板中使工具栏半透明时,手势识别器不会触发事件。我应该如何在半透明工具栏上使用手势识别器?