Objective-C初步研究 - 实现文件(Implementation File)

1. 实现文件以.m为后缀名

 

  Objective-C初步研究 - 实现文件(Implementation File)

 

#import “myClass.h”

导入头文件

 

@implementation myClass

告诉编译器实现哪个类

 

@synthesize myLabel;

为实例变量产生getters和setters方法

 

类方法实现

+(NSString)myClassMethod:(NSString)aString {
  //  Implement the Class Method Here!
}

 

实例方法实现

-(NSString)myInstanceMethod:(NSString)aString  anotherParameter:(NSURL)aURL {
  //  Implement the Instance Method Here!
}

 

最后必须以@end结尾

 

你可能感兴趣的:(Objective-C)