无法选择“使用性能工具运行” -> “OpenGL ES”在Xcode 3中
在 Xcode3 中,在“运行”下的所有选项中 -> “使用性能工具运行”,我只能选择:
- 泄漏
- CPU 采样器
- 分配
- 活动监视器
我无法选择任何其他选项,包括“僵尸”、“UI 记录器”等,或者对我来说最重要的是“OpenGL ES”。我认为这在机器上的所有 iOS 项目中都是一致的,但我没有检查。
如何分析 OpenGL ES?
In Xcode3, out of all options under "Run" -> "Run with Performance Tool", I can only select:
- Leaks
- CPU Sampler
- Allocations
- Activity monitor
I cannot select any other option including "Zombies", "UI Recorder", etc., or most importantly for me, "OpenGL ES". I think this is consistent in all iOS projects on the machine, but I did not check.
How can I profile OpenGL ES?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仪器的某些选项仅在设备上可用。
连接设备,将构建从模拟器更改为设备...首先构建应用程序,然后尝试使用
仪器,看看您是否得到了您想要的东西。
Some of the options of Instrument are available only on the Device.
Connect device, change the build from simulator to device... build the app first then try using
instrument and see if your getting what you looking for..
您必须首先在
Xcode
中运行项目,然后在Instruments
中选择Attach to Process
选项并选择您正在运行的应用程序。这对我有用。You must first run the project in
Xcode
, then select theAttach to Process
option inInstruments
and select your running application. It works for me.您可以单独运行 Instruments,它是一个常规应用程序,无需从 Xcode 启动它。然后连接到您的流程和仪器......
You could run Instruments solo, it's a regular app and you don't have to launch it from Xcode. Then attach to your process and instrument away...