摘要: .h文件#import @interface CustomLabel : UILabel{ BOOL _isEnabled;}@property (nonatomic ) BOOL isEnabled;@end.m文件#import "CustomLabel.h"@implementation CustomLabel@synthesize isEnabled = _isEnabled;- (void)drawTextInRect:(CGRect)rect{ [super drawTextInRect:rect]; CGSize textSize = [[self te... 阅读全文
posted @ 2013-07-19 10:24 菜鸟程序猿 阅读(623) 评论(0) 推荐(0) 编辑