黑马程序员技术交流社区

标题: 给UILabel写的一个分类 [打印本页]

作者: vitanie    时间: 2015-3-9 00:53
标题: 给UILabel写的一个分类
#import "UILabel+More.h"

@implementation UILabel (More)

/**
透明背景
*/
+ (UILabel *)LabelTextCenterWithFrame:(CGRect)rect text:(NSString *)text textColor:(UIColor *)textColor font:(UIFont *)font textAlignment:(NSInteger)alignment
{
    UILabel *label        = [[UILabel alloc] initWithFrame:rect];
    label.text            = text;
    label.textColor       = textColor;
    label.font            = font;
    label.textAlignment   = (NSTextAlignment)alignment;
   
    label.backgroundColor = [UIColor clearColor];
    return label;
}

/**
标准实例化
*/
+ (UILabel *)LabelTextCenterWithFrame:(CGRect)rect text:(NSString *)text textColor:(UIColor *)textColor font:(UIFont *)font textAlignment:(NSInteger)alignment backColor:(UIColor *)backColor
{
    UILabel *label        = [[UILabel alloc] initWithFrame:rect];
    label.text            = text;
    label.textColor       = textColor;
    label.font            = font;
    label.textAlignment   = (NSTextAlignment)alignment;
    label.backgroundColor = backColor;
   
    return label;
}



@end





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2