mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Add more examples of methods available to objects.
This commit is contained in:
parent
5ad738af38
commit
7496526cf4
@ -297,9 +297,10 @@ int main (int argc, const char * argv[])
|
|||||||
}
|
}
|
||||||
// Convenient notation for public access variables to auto generate a setter method.
|
// Convenient notation for public access variables to auto generate a setter method.
|
||||||
// By default, setter method name is 'set' followed by @property variable name.
|
// By default, setter method name is 'set' followed by @property variable name.
|
||||||
@property int count; // Setter method name = 'setCount'
|
@property int propInt; // Setter method name = 'setCount'
|
||||||
@property (copy) NSString *name; // (copy) => Copy the object during assignment.
|
@property (copy) id copyId; // (copy) => Copy the object during assignment.
|
||||||
@property (readonly) id data; // (readonly) => Cannot set value outside interface.
|
// (readonly) => Cannot set value outside interface.
|
||||||
|
@property (readonly) NSString *roString; // Use @synthesize in @implementation to create accessor.
|
||||||
// You can customize the getter and setter names instead of using default 'set' name:
|
// You can customize the getter and setter names instead of using default 'set' name:
|
||||||
@property (getter=lengthGet, setter=lengthSet:) int length;
|
@property (getter=lengthGet, setter=lengthSet:) int length;
|
||||||
|
|
||||||
@ -308,12 +309,15 @@ int main (int argc, const char * argv[])
|
|||||||
|
|
||||||
// + for class method.
|
// + for class method.
|
||||||
+ (NSString *)classMethod;
|
+ (NSString *)classMethod;
|
||||||
+ (MyClass *)myClassFromName:(NSString *)name;
|
+ (MyClass *)myClassFromHeight:(NSNumber *)defaultHeight;
|
||||||
|
|
||||||
// - for instance methods.
|
// - for instance methods.
|
||||||
- (NSString *)instanceMethodWithParameter:(NSString *)string;
|
- (NSString *)instanceMethodWithParameter:(NSString *)string;
|
||||||
- (NSNumber *)methodAParameterAsString:(NSString*)string andAParameterAsNumber:(NSNumber *)number;
|
- (NSNumber *)methodAParameterAsString:(NSString*)string andAParameterAsNumber:(NSNumber *)number;
|
||||||
|
|
||||||
|
// Constructor methods with arguments:
|
||||||
|
- (id)initWithDistance:(int)defaultDistance;
|
||||||
|
|
||||||
@end // States the end of the interface.
|
@end // States the end of the interface.
|
||||||
|
|
||||||
|
|
||||||
@ -341,6 +345,7 @@ NSString *stringFromInstanceMethod = [myClass instanceMethodWithParameter:@"Hell
|
|||||||
// Implement the methods in an implementation (MyClass.m) file:
|
// Implement the methods in an implementation (MyClass.m) file:
|
||||||
@implementation MyClass {
|
@implementation MyClass {
|
||||||
long distance; // Private access instance variable.
|
long distance; // Private access instance variable.
|
||||||
|
NSNumber height;
|
||||||
}
|
}
|
||||||
|
|
||||||
// To access a public variable from the interface file, use '_' followed by variable name:
|
// To access a public variable from the interface file, use '_' followed by variable name:
|
||||||
@ -348,27 +353,49 @@ _count = 5; // References "int count" from MyClass interface.
|
|||||||
// Access variables defined in implementation file:
|
// Access variables defined in implementation file:
|
||||||
distance = 18; // References "long distance" from MyClass implementation.
|
distance = 18; // References "long distance" from MyClass implementation.
|
||||||
|
|
||||||
// Call when the object is releasing
|
// Called before calling any class methods or instantiating any objects.
|
||||||
- (void)dealloc
|
+ (void)initialize
|
||||||
{
|
{
|
||||||
|
if (self == [MyClass class]) {
|
||||||
|
distance = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Constructors are a way of creating classes
|
// Counterpart to initialize method. Called when an object's reference count is zero.
|
||||||
|
- (void)dealloc
|
||||||
|
{
|
||||||
|
[height release]; // If not using ARC, make sure to release class variable objects
|
||||||
|
[super dealloc]; // and call parent class dealloc.
|
||||||
|
}
|
||||||
|
|
||||||
|
// Constructors are a way of creating instances of classes.
|
||||||
// This is a default constructor which is called when the object is initialized.
|
// This is a default constructor which is called when the object is initialized.
|
||||||
- (id)init
|
- (id)init
|
||||||
{
|
{
|
||||||
if ((self = [super init]))
|
if ((self = [super init])) // 'super' used to access methods from parent class.
|
||||||
{
|
{
|
||||||
self.count = 1;
|
self.count = 1; // 'self' used for object to send messages to itself.
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
// Can create constructors that contain arguments:
|
||||||
|
- (id)initWithDistance:(int)defaultDistance
|
||||||
|
{
|
||||||
|
distance = defaultDistance;
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
+ (NSString *)classMethod
|
+ (NSString *)classMethod
|
||||||
{
|
{
|
||||||
return [[self alloc] init];
|
return [[self alloc] init];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
+ (MyClass *)myClassFromHeight:(NSNumber *)defaultHeight
|
||||||
|
{
|
||||||
|
height = defaultHeight;
|
||||||
|
return [[self alloc] init];
|
||||||
|
}
|
||||||
|
|
||||||
- (NSString *)instanceMethodWithParameter:(NSString *)string
|
- (NSString *)instanceMethodWithParameter:(NSString *)string
|
||||||
{
|
{
|
||||||
return @"New string";
|
return @"New string";
|
||||||
@ -379,6 +406,12 @@ distance = 18; // References "long distance" from MyClass implementation.
|
|||||||
return @42;
|
return @42;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If you create a method in @implementation but do not include in @interface, it is private.
|
||||||
|
- (NSNumber *)secretPrivateMethod {
|
||||||
|
return @72;
|
||||||
|
}
|
||||||
|
[self secretPrivateMethod]; // Calls private method.
|
||||||
|
|
||||||
// Methods declared into MyProtocol
|
// Methods declared into MyProtocol
|
||||||
- (void)myProtocolMethod
|
- (void)myProtocolMethod
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user