Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any good tutorials (ios5 >) that give a good example of how to use NSObjects correctly? I searched a lot but i could not find any new tutorial with the latest techniques or something like that.

It would be great if someone got a good tutorial of the use of NSObjects

share|improve this question
1  
why you are using NSObject directly! – Midhun MP Jan 15 at 16:29
2  
It's very rare you might want to create an instance of NSObject directly. What's your use case? – Ravi Jan 15 at 16:35
I just want to now how i can use NSObjects, searching for an tutorial. – Frenck Jan 15 at 16:36
2  
The verb "to use an NSObject" doesn't make sense. An NSObject doesn't do anything, it doesn't contain any data, it's just a template to create your own classes. – Fogmeister Jan 15 at 16:39

1 Answer

up vote 9 down vote accepted

You can't use NSObject directly (well, you can but you don't).

You subclass NSObject to create your own custom classes that do things and contain data.

e.g.

File Person.h

#import <Foundation/Foundation.h>

@interface Person : NSObject

@property (nonatomic, strong) NSString *name;

- (id)initWithName:(NSString*)name;

@end

File Person.m

#import "Person.h"

@implementation

- (id)init
{
    return [self initWithName:@"Default name"];
}

- (id)initWithName:(NSString*)name
{
    self = [super init];
    if (self) {
        _name = name;
    }
    return self;
}

@end

This will create a subclass of NSObject called Person. It contains a single property called "name".

You can create it with a default name by calling [[Person alloc] init]; or init it with a name by calling [[Person alloc] initWithName:@"Your Name"];.

share|improve this answer
1  
Forgot the @synthesize in your example. – thegrinner Jan 15 at 16:39
10  
Nope, you don't need the @synthesize in the latest Xcode. In fact it is discouraged now unless in certain situations. – Fogmeister Jan 15 at 16:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.