NSTextView 令人沮丧的问题

发布于 2024-10-03 21:42:58 字数 293 浏览 4 评论 0原文

我想使用 Objective-C 中的 NSLog 函数打印 NSTextView 的文本内容。到目前为止我的代码是:

NSString *s=[updateSource textStorage];

NSLog(s);

我得到的只是错误:

[NSConcreteTextStorage getCharacters:范围:]:选择器无法识别[self = 0x43f4b0]

I want to print out the Text contents of a NSTextView using the NSLog function in Objective-C. The code I have so far is:

NSString *s=[updateSource textStorage];

NSLog(s);

All I get is the error:

[NSConcreteTextStorage getCharacters:range:]: selector not recognized [self = 0x43f4b0]

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

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

发布评论

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

评论(2

黒涩兲箜 2024-10-10 21:42:58

请改用[updateSource string][updateSource textStorage] 不是一个 NSString,而是一个 NSTextStorage

Use [updateSource string] instead. [updateSource textStorage] is not an NSString, but rather an NSTextStorage.

财迷小姐 2024-10-10 21:42:58

这不是问题的原因,但您应该使用 NSLog(@"%@",s);记录你的字符串。 NSLog 的第一个参数应该始终是格式字符串,而不是您要记录的值。

(如果不这样做,如果该值包含百分比字符,您的应用程序可能会崩溃)

It's not the cause of your problem, but you should be using NSLog(@"%@",s); to log your string. The first argument of NSLog should always be a format string, and not the value you're trying to log.

(if you don't, your app will likely crash if the value contains percent characters)

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