gpt4 book ai didi

ios - 如何使用选项卡式应用程序

转载 作者:行者123 更新时间:2023-11-28 22:33:15 25 4
gpt4 key购买 nike

所以我是第一次使用选项卡式应用程序,需要一些帮助。

应用有两种 View :

  • 第一个有一个基本的总工资计算器。
  • 第二个可以选择税种并进行更改。

我的问题是如何从 View 1 中获取信息,即数字,并将它们用于 View 2,而无需重新输入数字?

我也在使用 .xib 而不是 Storyboard。

@synthesize totalpay, overtime;

//initWithNibName information is in here
////
//View did load and memory
////

//button to calculate the inputed hours and hourly pay
- (IBAction)calculate:(id)sender
{
NSString *inVal = _hours.text;
NSString *inVal2 = _pay.text;
double hours = [inVal doubleValue];
double pay = [inVal2 doubleValue];

//check for overtime
overtime = hours - 40;

if( overtime > 0 )
{
totalpay = (( pay * 1.5) * overtime ) + (( hours - overtime ) * pay );
_overtimeOutput.text = [NSString stringWithFormat:@"Overtime Pay this week: $%.2f", totalpay];
}
else
{
totalpay = hours * pay;
_baseOutput.text = [NSString stringWithFormat:@"Pay this week: $%.2f", totalpay];
}
}

最佳答案

型号。

您需要创建一个模型。

这是您存储数据的地方,您可以在 Controller 中使用它在任何 View 中显示它。

您可以将它们保存在模型(可以是数组、字典或类)中,而不是将所有内容都存储在方法中的局部变量中。然后您可以访问这些值。

My question is how do i take the information from view 1, the numbers, and have them be used in view 2, without having to reenter the numbers.

如果您有一个用于选项卡的 Controller ,那么您可以轻松地使用两个选项卡的属性。

关于ios - 如何使用选项卡式应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16839274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com