UILabel *titleLabel = [UILabel labelWithFrame:CGRectMake(33, 32, 60, 14) fontSize:14 textColor:UICOLOR_WITH_VALUE(0x444444)]; titleLabel.text = @"QQ號碼:";
- (UILabel*)labelWithFrame:(CGRect)frame fontSize:(CGFloat)fontSize textColor:(UIColor *)textColor { UILabel *label = [[UILabel alloc] initWithFrame:frame]; label.font = [UIFont systemFontOfSize:fontSize]; label.textColor = textColor; label.backgroundColor = [UIColor darkGrayColor]; label.textAlignment = UITextAlignmentLeft; return label; }