NSTextView 令人沮丧的问题
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用
[updateSource string]
。[updateSource textStorage]
不是一个NSString
,而是一个NSTextStorage
。Use
[updateSource string]
instead.[updateSource textStorage]
is not anNSString
, but rather anNSTextStorage
.这不是问题的原因,但您应该使用 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)