0

我有两个变量 newdose,另一个是 appDelegate 变量,newdose 中的值为 50,但在 appDelegate 变量中显示为零。

float newdose=vacinedose;
appDelegate.Same_Vaccination_Cost_Vaccination_Annually_No_Guarantee=newdose;
NSLog(@"After Dose Vaccine Dose is %.2f",newdose);
4

1 回答 1

0

您需要初始化您的 appDelegate 变量。做 :

appDelegate=[UIApplication SharedApplication]
于 2013-03-14T08:01:13.110 回答