UItextView 和 NSString

发布于 2024-11-04 23:12:29 字数 357 浏览 1 评论 0原文

我有一个奇怪的错误。

MyController A
{
@ syntesize myUITextView;
}

MyController B {


MyControllerA *controller = ....
NSSTring *myString = " hello";
controller.myUITextView.text = myString;
 NSLog(@"%@",myUITextView.text) =   (null)

NSLog(@"%@",myString) = hello

}

当我打印controller.myUITextView时它是空的,请问我做错了什么?

谢谢四位的回答

I have a strange error.

MyController A
{
@ syntesize myUITextView;
}

MyController B {


MyControllerA *controller = ....
NSSTring *myString = " hello";
controller.myUITextView.text = myString;
 NSLog(@"%@",myUITextView.text) =   (null)

NSLog(@"%@",myString) = hello

}

when i print controller.myUITextView it's null, what i am doing wrong, please ?

thanks four your answers

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

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

发布评论

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

评论(4

岛徒 2024-11-11 23:12:29

NSSTring *myString = " hello";

"hello" 不是 ObjectiveC 字符串,而是 C 字符串。您应该在前面添加 @,如下所示:@"hello"

NSSTring *myString = " hello";

"hello" is not an ObjectiveC string, it's a C string. You should add @ before like this: @"hello"

中二柚 2024-11-11 23:12:29
NSString *myString = @"hello";
controller.myUITextView.text = myString;
NSLog(@"%@",controller.myUITextView.text) ;

NSLog(@"%@",myString);

试试这个

NSString *myString = @"hello";
controller.myUITextView.text = myString;
NSLog(@"%@",controller.myUITextView.text) ;

NSLog(@"%@",myString);

Try this

静水深流 2024-11-11 23:12:29

看来您没有记录您认为正在记录的内容。此行...

NSLog(@"%@",myUITextView.text);

缺少控制器变量前缀,因此应该是:

NSLog(@"%@",controller.myUITextView.text);

It looks like you're not logging what you think you're logging. This line...

NSLog(@"%@",myUITextView.text);

is missing the controller variable prefix so it should be:

NSLog(@"%@",controller.myUITextView.text);
帝王念 2024-11-11 23:12:29

您确定在 MyController A 中正确初始化了 myUITextView (或在 Interface Builder 中绑定了它)吗?似乎 controller.myUITextView 为零。

Are you sure that you initialize myUITextView in MyController A (or bind it in Interface Builder) properly? Seems like controller.myUITextView is nil.

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