2-1 Objective-C语法汇总预览

2018-12-31  本文已影响0人  Maserati丶

课程来自慕课网DavidChin老师


Objective-C语法汇总预览
@interface SimpleClass:NSObject
@end
@interface Person:NSObject
@property NSString *firstName;
@property NSString *lastName;
@end
@property NSNumber *yearOfBirth;  // 指针类型 说明是对象
@property int yearOfBirth;  // 基础类型 是值类型
@property (readonly) NSString  *firstName;  // 只读
// 减号方法(普通方法,又称对象方法)的声明
@interface Person:NSObject
-(void)someMethod;  //括号中表示返回值为空
-(void)someMethodWithValue:(SomeType)value;
-(void)someMethodWithFirstValue:(SomeType)info1 secondValue:(AnotherType)info2;
@end
// 加号方法(类方法,又称静态方法)的声明
@interface NSString:NSObject
+(id)string;
+(id)stringWithString:(NSString *)aString;
+(id)stringWithFormat:(NSString *)format,...;
+(id)stringWithContentsOfFile:(NSString *)path encoding:(NSStringEncoding)enc error:(NSError **)error;
+(id)sringWithCSting:(Const char *)cString encoding:(NSStringEncoding)enc;
@end

XYZPerson.h 文件(声明)

@interface XYZPerson:NSObject
-(void)sayHello;
@end

XYZPerson.m 文件(实现)

#import "XYZPerson.h"
@implementation XYZPerson
-(void)sayHello {
    NSLog(@"Hello,World");
}
@end
上一篇 下一篇

猜你喜欢

热点阅读