有誰知道如何獲取數字條目並將其通過公式? 我正在嘗試創建一個毫米到英寸的轉換計算器,並帶有一個可更改公式的開關,以便您可以將英寸計算爲毫米。 到目前爲止,這是我做了什麼,而我使用的Xcode 3.2.6xcode中的公制轉換計算器
.M
@synthesize entry;
@synthesize output;
@synthesize toggle;
//-(IBAction)hidekeyboard:(id)sender{
-(IBAction)calculate:(id)sender{
float floatoutput=[entry.text floatValue]/[25.4];
}
.H
IBOutlet UITextField *entry;
IBOutlet UILabel *output;
IBOutlet UISwitch *toggle;
}
-(IBAction)calculate:(id)sender;
-(IBAction)hidekeyboard:(id)sender;
@property (nonatomic, retain) UITextField *entry;
@property (nonatomic, retain) UILabel *output;
@property (nonatomic, retain) UISwitch *toggle;
我很新的Xcode和你可以給我的任何信息將非常感激。
謝謝,這解決了我的問題! – empi99 2013-04-09 02:04:31