如何解决XCode滑动手势去上一个/下一个文件冻结编辑器?

从今天早上起,我在小牛的XCode 5中面临着一个非常烦人的bug:

我用来从左到右用两根手指在MacBook触控板上滑动,以前往/下一个文件进入XCode编辑器.
但是,现在,这样做完全冻结了编辑器,刚刚移动了像5像素的东西.
之后,我必须关闭XCode并重新打开它,使编辑器重新工作.

按下上一个/下一个按钮,因为它不会触发这个错误的动画.

有没有人有这个问题或有任何线索来解决它?

解决方法

事实上,这个问题正在影响其他滑动手势,就像Safari中的上一个/下一个滑动.

这是一个解决问题的方法(来自Apple支持论坛).

ok guys i found a solution. Resetting the PRAM seems to have worked
here and the 2 finger swipe is just fine Now. to reset the PRAM do the
followings:

  1. Shut down your Mac.
  2. Locate the following keys on the keyboard: Command (⌘),Option,P,and R. You will need to hold these keys down simultaneously in step 4.
  3. Turn on the computer. Press and hold the Command-Option-P-R keys before the gray screen appears.
  4. Hold the keys down until the computer restarts and you hear the startup sound for the second time.
  5. Release the keys.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...