这是我昨天的问题的后续行动,我的 .h 是
@property (weak, nonatomic) IBOutlet UITextField *initialBudget;
@property (weak, nonatomic) IBOutlet UITextField *expenses;
@property (weak, nonatomic) IBOutlet UITextField *timeSpent;
@property (weak, nonatomic) IBOutlet UITextField *incomePerHour;
我的 .m 是:
- (IBAction)calculateResults:(id)sender {
double budget = [initialBudget.text doubleValue ];
double expense = [expenses.text doubleValue];
double time = [timeSpent.text doubleValue];
double hourlyIncome = (budget - expense)/time;
incomePerHour.text = [NSString stringWithFormat:@"%.2f", hourlyIncome];
}
我尝试使用不同的方法将文本保存在 ViewController 中,当我关闭应用程序时,文本消失了。有人有想法吗?我从夏天开始才开始学习 Objective-C,所以对于潜在的新手问题,我深表歉意。