Xcode 4 中的代码大小
如何找出 Xcode 4 中每个二进制模块的大小? Xcode3 在主屏幕中有此信息,但它似乎隐藏在 XCode4 中的某个地方。我有兴趣比较不同技术对代码大小和执行速度的影响。准确地说,我说的是XCode3中标记为“Code”的列,它显示了每个二进制模块的大小;参见下图:
How do I find out the size of each binary module is in Xcode 4? Xcode3 had this info in the main screen, but it seems to be hidden somewhere in XCode4. I'm interested in comparing the effects of different techniques on code size and execution speed. To be precise, I'm talking about the column marked "Code" in XCode3, which shows each binary module's size; see image below:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Xcode 左侧的产品选项卡下,右键单击您的应用程序并选择在 Finder 中显示。在查找器中,如果处于列表模式,则大小应显示在文件的右侧。您可以通过单击查找器左上角的不同视图选项进入列表模式。这就是找到二进制大小的方法。如果没有显示二进制大小,请右键单击 xcode 中的产品文件,然后单击压缩。文件大小应显示在二进制文件的左侧。希望这有帮助。
On the left side of xcode, under the product tab, right click on your app and select show in finder. In finder, the size should be displayed on the right side of the file if you are in list mode. You can go into list mode by clicking the different view options in the top left of finder. That is how you find the binary size. If it doesn't show the binary size, right click on the product file in xcode and click compress. The file size should be showed to the left of the binary. Hope this helps.