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"];.