iPhone开发-NSString到floatValue

发布于 2024-11-08 21:05:17 字数 413 浏览 0 评论 0原文

嘿 我正在创建一个计算器作为 iPhone 应用程序。

我有一个 UITextfield,用户在其中输入输入 例如:3+4-48*23+43

,我有一个 UILabel,它将在按下“计算按钮”后显示结果。

代码:

float result;
NSString *textFieldValue= self.myTextField.text;  
// i need a line of code to calculate the values in the string and convert it to     floatValue
result=[textFieldValue  floatValue];
[self.myLabel.text stringWithFormat:@"%f",result];

Hey
I'm creating a calculator as an iphone app.

I have a UITextfield where the user enters his input
EX: 3+4-48*23+43

and i have a UILabel that will display the result after pressing on "calculate button".

CODE:

float result;
NSString *textFieldValue= self.myTextField.text;  
// i need a line of code to calculate the values in the string and convert it to     floatValue
result=[textFieldValue  floatValue];
[self.myLabel.text stringWithFormat:@"%f",result];

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

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

发布评论

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

评论(2

站稳脚跟 2024-11-15 21:05:17

如果您正在寻找现成的开源资源,请从这里开始:http://apptree.net/parser.htm

In case you are looking for ready made open source resources start here: http://apptree.net/parser.htm

难以启齿的温柔 2024-11-15 21:05:17

You will want to look into Reverse Polish Notation. Here is the first example I cam across in a google search for Objective-C.

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