开发者

Calculator application, pupulating textfield from buttons, iphone

开发者 https://www.devze.com 2022-12-22 02:38 出处:网络
I am creating a simple calculator application. I have 10 buttons l开发者_运维技巧abelled 0 through 9, and 5 buttons for the operations. I have an uitextfied which should be populated from the buttons.

I am creating a simple calculator application. I have 10 buttons l开发者_运维技巧abelled 0 through 9, and 5 buttons for the operations. I have an uitextfied which should be populated from the buttons. ie when the user click button 1, 1 should be entered in the field and so on. Also the value entered should be there even if the user taps another one. how to do that..pls help..


You need to declare the textfield (and the buttons) as Outlets in Interface Builder. Then you need to connect the touch up inside event of each button to a method. You can either have 10 methods which is one for each button or just one method and filter on id or tag. In the button actions you can easily update the textfield by appending the the correct number.


I would personally store user input in a NSMutableString, validating input (for numeracy)and adding it to the variable if validation returns true.

Then when a button is pressed it is simply a matter of updating the UITextField with the contents of the NSMutableString.

For the purpose of calculations, the string value can be converted to the appropriate numeric type when a calculation is required.

0

精彩评论

暂无评论...
验证码 换一张
取 消