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.

Zubeyr Aciksari
21,074 PointsLet's warm up with a little finger exercise! Declare a property named 'items'. Make it an NSMutableArray, and use the pr
Hi guys, i am stuck in here. I don't what i am doing wrong. Little help please?
Thanks!
Let's warm up with a little finger exercise! Declare a property named 'items'. Make it an NSMutableArray, and use the property modifiers 'nonatomic' and 'strong'.
#import "UITableViewController.h"
@interface InboxViewController : UITableViewController
@property (nonatomic strong) NSMutableArray *items;
@end
#import "InboxViewController.h"
@implementation InboxViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Add custom code below!
}
@end
2 Answers

Zubeyr Aciksari
21,074 PointsThanks a lot Martin, it helped!

Martin Wildfeuer
Courses Plus Student 11,071 PointsYou are missing a comma between nonatomic and strong, multiple arguments have to be comma separated
@property (nonatomic, strong) NSMutableArray *items;
Hope that helps :)