Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKal K
13,332 PointsFirst Code Challenge in Implementing Designs: Can't find all the errors in code challenge, please help
My Code:
import "JonyIveViewController.h"
@implementation JonyIveViewController
- (void)viewDidLoad { }
(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; // Rest of viewDidLoad code omitted }
-
(IBAction)redesignIOS:(id)sender {
// Magic redesign code omitted
NSLog(@"True simplicity is...where you go, 'Yeah, well, of course.'"); }
@end
1 Answer
Guillaume Maka
Courses Plus Student 10,224 Points#import "JonyIveViewController.h"
@implementation JonyIveViewController
- (void)viewDidLoad {
//wrong statement [super viewWillAppear:NO];
[super viewDidLoad];
// Rest of viewDidLoad code omitted
// missing '}'
}
- (IBAction)redesignIOS:(id)sender {
// Magic redesign code omitted
//missing '@' NSLog("True simplicity is...where you go, 'Yeah, well, of course.'");
NSLog(@"True simplicity is...where you go, 'Yeah, well, of course.'");
}
@end
Kal K
13,332 PointsKal K
13,332 PointsThanks! I can believe i missed that