Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

San Francisco
28,373 PointsChallenge 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.
#import "UIViewController.h"
@interface ViewController : UIViewController
@property (strong, nonatomic) NSString *shoppingCart;
@property (strong, nonatomic) NSArray *shoppingList;
@end
#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
26,662 PointsHi San Francisco,
You're almost there, you just have some simple errors.
You've assigned
shoppingList
as a local variable within theviewDidLoad
method, theNSArray
instance should be assigned to the class property insteadYou're trying to assign an object to
self.shoppingList.text
which won't work asshoppingList
is of the typeNSArray
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!

San Francisco
28,373 PointsBless you Chris!