摘要: 1 #import <UIKit/UIKit.h>2 3 @interface myLabel : UILabel4 5 @end 1 #import "myLabel.h" 2 3 @implementation myLabel 4 5 - (id)initWithFrame:(CGRect)frame 6 { 7 self = [super initWithFrame:frame]; 8 if (self) { 9 // Initialization code10 }11 return self;12 }13 14 -(void)touc... 阅读全文
posted @ 2013-02-19 14:45 diablo大王 阅读(2555) 评论(0) 推荐(0) 编辑