Xamarin数学与不同的选项卡
本文关键字:选项 Xamarin | 更新日期: 2023-09-27 17:50:31
我必须为class做一个死亡计算,这就是我到目前为止所做的。
现在的问题是我必须做数学。所以如果这个人打开其中一个开关,它就会从总数中加减。
现在我需要做数学部分。我不是100%肯定如何做数学跨不同的标签。如果有人能帮我,那就太好了。
https://i.stack.imgur.com/tP7FY.jpg https://i.stack.imgur.com/asw8L.jpg你需要声明你可以在应用程序的任何地方访问的属性。
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (nonatomic, strong) UIWindow *window;
@property (nonatomic, assign) BOOL doYouEatWell;
// etc.
@end
FoodViewController:
#import "AppDelegate.h"
#import "FoodViewController.h"
- (void)switchChanged:(UISwitch *)theSwitch
{
if (theSwitch == self.doYouEatWellSwitch)
{
((AppDelegate *)[[UIApplication sharedApplication] delegate]).doYouEatWell = self.doYouEatWellSwitch.on)
}
}
TotalViewController:
#import "AppDelegate.h"
#import "TotalViewController.h"
if (((AppDelegate *)[[UIApplication sharedApplication] delegate]).doYouEatWell == YES)
{
// User has said that they eat well.
}