https://i.stack.imgur.com/jFUj8.png
these are the console logs!! the error is in the first line!
this is the "go" button it talks about and the "compute" action
https://i.stack.imgur.com/oarQp.png
this is some of my code that i am using in the view controller M file.
- (IBAction)compute:(id)sender {
float answer = (21.75 + [_shoeSize.text floatValue])/3;
float feet = answer/12;
float result = feet * [_numberOfFeet.text floatValue];
self.answerDisplay.text = [[NSString alloc] initWithFormat:@"%f", result];
}