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 (iOS7) Refactoring into a Model Creating a Custom Class

Creating a custom class

here is the task- implement a 'quotes' method which will allocate and initialize the _quotes instance variable only if it is 'nil'. Initialize the array with any three strings.

my code is-

import "Quote.h"

@implementation Quote

  • (NSString *) quotes {

if(_quotes == nil){

_quotes=[[NSArray alloc] initWithObjects: @"Hey There", @"Hows you?", @"Hope you r gud!", nil]; }

return _quotes;

}

@end please help me in understanding where m wrong!

2 Answers

Stone Preston
Stone Preston
42,016 Points

the problem is your return type

- (NSString *) quotes {

this is a getter for your quotes variable. However quotes is an NSArray, not an NSString.

try changing your return type to NSArray.

- (NSArray *) quotes {
    if (_quotes == nil) {

         _quotes = [[NSArray alloc] initWithObjects:@"Hey There", @"Hows you?", @"Hope you r gud!", nil];

    }

    return _quotes;
}

OO!!! my bad!! thanku so much for your help stone!!! :)