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 Self-Destructing Message iPhone App Designing and Starting the App Introducing the Project

Zubeyr Aciksari
Zubeyr Aciksari
21,074 Points

Let'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'.

InboxViewController.h
#import "UITableViewController.h"

@interface InboxViewController : UITableViewController
@property (nonatomic strong) NSMutableArray *items;



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

@implementation InboxViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Add custom code below!

}

@end

2 Answers

Zubeyr Aciksari
Zubeyr Aciksari
21,074 Points

Thanks a lot Martin, it helped!

Martin Wildfeuer
PLUS
Martin Wildfeuer
Courses Plus Student 11,071 Points

You are missing a comma between nonatomic and strong, multiple arguments have to be comma separated

@property (nonatomic, strong) NSMutableArray *items;

Hope that helps :)