如何设置字符串值等于UITextField?

发布于 2024-11-03 01:20:02 字数 488 浏览 0 评论 0原文

我正在尝试让您在文本字段中输入一个数字,然后按一个按钮。字符串等于文本字段,标签等于字符串。问题是当我按下按钮时它崩溃了。我做错了什么?

来自 .h 文件:

@interface TextGameViewController : UIViewController 
 {
   IBOutlet UITextField *input;
   IBOutlet UILabel *line11;
   NSString *l11;
 }
-(IBAction)button;

来自 .m 文件:

-(IBAction)button
 {
   [input resignFirstResponder];
   l11 = ([input.text stringValue]);
   line11.text = [[NSString alloc] initWithFormat:@"%2.f", l11];
 }

I'm trying to make it so you type in a number in a text field, then you press a button. A string is then equal to the text field and a label is then equal to the string. The problem is it crashes when i pres the button. What am I doing wrong?

from the .h file:

@interface TextGameViewController : UIViewController 
 {
   IBOutlet UITextField *input;
   IBOutlet UILabel *line11;
   NSString *l11;
 }
-(IBAction)button;

from the .m file:

-(IBAction)button
 {
   [input resignFirstResponder];
   l11 = ([input.text stringValue]);
   line11.text = [[NSString alloc] initWithFormat:@"%2.f", l11];
 }

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

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

发布评论

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

评论(1

扬花落满肩 2024-11-10 01:20:02

l11 已经是一个 NSString ,将此行代码更改为:

l11 = ([input.text stringValue]);

To

l11 = input.text;

l11 is already a NSString, change this line of code from:

l11 = ([input.text stringValue]);

To

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