#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
|
|