好的,我在 Xcode 4.5/iOS 6 上使用选项卡式应用程序模板测试了以下内容。
- 创建了一个选项卡式应用程序。
创建了一个名为 SampleButton 的 UIButton 子类,并实现了以下方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesBegan:touches withEvent:event]; } - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesCancelled:touches withEvent:event]; } - (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesMoved:touches withEvent:event]; } - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesEnded:touches withEvent:event]; }
将此 SampleButton 添加到第一个选项卡。
- 为所有触摸方法添加了断点。
- 在设备上运行。
- 测试所有触摸方法都按预期触发。
- 现在触摸 SampleButton,然后也按下第二个选项卡。
结果:视图切换到第二个选项卡,但在 SampleButton 中从未调用 touchesCancelled 和/或 touchesEnded。如果在我触摸该按钮时视图发生变化,其中一个或另一个不应该触发吗?这被证明是一个巨大的问题,因为在我的应用程序中,当该按钮按下时我正在播放声音,并且如果用户在按下它的同时切换选项卡,它永远不会停止播放。似乎这曾经在 iOS3 和 iOS4 中正常工作。