11 2011 档案

摘要:@interface YkMainViewController : UIViewController <YkFlipsideViewControllerDelegate>{ NSOperationQueue *operationQueue; BOOL b_init;}@interface MyTask : NSOperation{ int operationId;}@property int operationId;@end#import "MyTask.h"@implementation MyTask@synthesize operationId;- (voi 阅读全文
posted @ 2011-11-24 11:30 Gang.Wang 阅读(1046) 评论(1) 推荐(0)
摘要:View Code 1 @interface ClassC : NSObject { 2 @private 3 4 } 5 @end 6 7 @implementation ClassC 8 9 -(void) dealloc10 {11 [super dealloc];12 13 }14 @end15 16 @interface ClassB : NSObject {17 @private18 ClassC * class_c;19 }20 21 @property(nonatomic, retain) ClassC * classc;22 @end... 阅读全文
posted @ 2011-11-14 11:42 Gang.Wang 阅读(562) 评论(0) 推荐(0)