我有一段時間讓這段代碼正確擺脫。我目前被困在文本的最後一行。我是新來的編寫代碼。我學到的所有東西都可以在網上找到並通過這個網站找到。請參閱下面帶下劃線的註釋。請幫幫忙,所以我可以看到,如果我的計算,即使作品...複雜計算
//.h
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITextField *Price87;
@property (weak, nonatomic) IBOutlet UITextField *MPG87;
@property (weak, nonatomic) IBOutlet UITextField *PriceE85;
@property (weak, nonatomic) IBOutlet UITextField *MPGE85;
@property (weak, nonatomic) IBOutlet UITextField *GasTankSize;
- (IBAction)Settings:(id)sender;
- (IBAction)pergallon:(id)sender;
- (IBAction)pertank:(id)sender;
@end
//.m
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController <----------- Getting a Incomplete Implementation here...
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)Settings:(id)sender {
Settings *settings = [[Settings alloc] initWithNibName:nil bundle:nil];
[self presentViewController:settings animated:YES completion:NULL];
}
- (IBAction)addNums:(id)sender {
int a = ([_Price87.text floatValue]);
int b = ([_MPG87.text floatValue]);
int c = ([_PriceE85.text floatValue]);
int d = ([_MPGE85.text floatValue]);
int e = ([_GasTankSize.text floatValue]);
int ans = ((a*e)-((e+(a*e)-(c*e)/b)*d)/e);
[ans setText:[NSString stringWithFormat:@"%i", pergallon]]; <--------- This is the line giving me trouble. I'm getting a "use of undeclaired identifier 'pergallon'
}
@end
'pergallon'是一種方法,不是addNums方法範圍內的變量。 – CodaFi