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 trialZubeyr 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 :)