如何使用 Xcode 4 断点操作

发布于 2024-12-20 06:42:35 字数 337 浏览 3 评论 0原文

我想使用 Xcode 功能来记录某些数据。 类似的操作应该非常简单

NSLog(@"Size: %@", NSStringFromRect(self.view.frame));

事实上,实现与断点的Log Message 操作 。我尝试了这个的变体:

Size: @NSStringFromRect([[self view] frame])@

但失败了。

我已经搜索了 Xcode 文档,并对这个功能的记录有多糟糕感到惊讶。我能找到的唯一信息是关于如何在遇到断点时配置声音播放动作。

I want to use Xcodes capabilities to log certain data. In fact it should be quite simple to achive something similar to

NSLog(@"Size: %@", NSStringFromRect(self.view.frame));

with the Log Message action of a breakpoint. I tried variations of this:

Size: @NSStringFromRect([[self view] frame])@

but failed.

I already searched the Xcode documentation and was surprised how bad that feature is documented. The only bit of information I was able to find was about how configuring at sound playing action when hitting breakpoints.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情归归情 2024-12-27 06:42:35

怎么样

Size: @(CGRect)[[self view] frame]@

How about

Size: @(CGRect)[[self view] frame]@
梦途 2024-12-27 06:42:35

另一种解决方案是:

Size: @(const char *)[[[[some objects] object] description] UTF8String]@

输出不如 fourplusone 答案中的输出那么好,但它适用于提供良好描述的所有对象。

Another solution would be:

Size: @(const char *)[[[[some objects] object] description] UTF8String]@

The output is not as nice as the one in fourplusone answer but it will work with all objects which provide a good description.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文