当前位置: 代码迷 >> Iphone >> 怎么在app中禁用缩放功能
  详细解决方案

怎么在app中禁用缩放功能

热度:549   发布时间:2016-04-25 06:53:53.0
如何在app中禁用缩放功能
RT,就是3个手指同时敲2下就可以缩放的zoom效果,在不改变系统设置那里的开关前提下,只在app游戏中不让出现这个效果 退出游戏了则恢复zoom效果,请问怎么做呢?

------解决方案--------------------

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event{
}
- (void)touchesEnded:(NSSet *)touches withE……


监听你对View的手指操作,比如几个手指,点了几下,都可以获取的。
  相关解决方案