To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

2013年9月18日 #

协议(porotocol)

摘要: fly.h:#import @protocol Fly-(void) go;-(void) stop;@optional-(void) sleep;@endFlyTest.h:#import #import "Fly.h"@interface FlyTest : NSObject{}@endfly.m:#import "FlyTest.h"@implementation FlyTest-(void) go{ NSLog(@"go");}-(void)stop{ NSLog(@"stop");}@endmain.m: 阅读全文

posted @ 2013-09-18 17:51 Ijavascript 阅读(312) 评论(0) 推荐(0) 编辑

类的通用格式

摘要: Test.h:#import @interface Test : NSObject{ int intX; int intY;}-(void) print;-(void) setIntX:(int) n;-(void) setIntY:(int) d;-(int) intX;-(int) intY;@endTest.m:#import "Test.h"@implementation Test-(void) print{ NSLog(@"int add result: %i",intX+intY);}-(void) setIntX:(int)n{ intX= 阅读全文

posted @ 2013-09-18 14:13 Ijavascript 阅读(234) 评论(0) 推荐(0) 编辑