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 trial

iOS Build a Simple iPhone App with Objective-C Creating a Data Model Creating a Data Collection

San Francisco
San Francisco
28,373 Points

Challenge Task 2 of 3 in Stage 3 Creating a Data Model (Obj-C)

I'm a moron but please help...tried everything to no avail...please post a working code example not theory or hints.

ViewController.h
#import "UIViewController.h"

@interface ViewController : UIViewController

@property (strong, nonatomic) NSString *shoppingCart;

@property (strong, nonatomic) NSArray *shoppingList;

@end
ViewController.m
#import "ViewController.h"

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    // Add your code below!

    NSArray *shoppingList = [[NSArray alloc]initWithObjects:@"toothpaste", @"bread", @"eggs", nil];
    self.shoppingList.text = [shoppingList objectAtIndex:0,1,2];
}

@end

2 Answers

Chris Shaw
Chris Shaw
26,676 Points

Hi San Francisco,

You're almost there, you just have some simple errors.

  1. You've assigned shoppingList as a local variable within the viewDidLoad method, the NSArray instance should be assigned to the class property instead

  2. You're trying to assign an object to self.shoppingList.text which won't work as shoppingList is of the type NSArray

  3. The objectAtIndex method only accepts a single argument which is an integer, for this you only need the number 2

self.shoppingList = [[NSArray alloc] initWithObjects:@"toothpaste", @"bread", @"eggs", nil]
self.shoppingCart = [self.shoppingList objectAtIndex:2];

Happy coding!