iphone-common-codes-ccteam源代码 CCUILabel.h

//  
// CCUILabel.h
// CCFC
//
// Created by xichen on 11-12-17.
// Copyright 2011年 ccteam. All rights reserved.
//


#import <UIKit/UIKit.h>
#import "CCUIView.h"
#import "CCConfig.h"


@interface UILabel(cc)


// 创建UILabel, 文本居中显示
+ (UILabel *)createLabel:(const CGRect *)rect withTitle:(NSString *)title;


#if CC_ENABLE_PRIVATE_API && CC_COMPILE_PRIVATE_CLASS
+ (UIFont *)defaultFont; // eg, .Helvetica NeueUI, 17px
#endif


@end

 

可能有更新:

googlecode链接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCUILabel.h

github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCUILabel.h

 

你可能感兴趣的:(UILabel)