+ (UILabel *)creatLabelWithFrame:(CGRect )frame
title:(NSString *)title
titleColor:(UIColor *)titleColor
font:(NSInteger )font {
UILabel *label = [[UILabel alloc] initWithFrame:frame];
label.text = title;
label.font = [UIFont systemFontOfSize:font];
label.textColor = titleColor;
return label;
}