iOS之UILabel换行符\n

时间:2023-01-23 14:50:34
    UILabel *tips = [[UILabel alloc]initWithFrame:CGRectMake(20, 16, kWidth - 20, 45)];
[tips setTextColor:[UIColor grayColor]];
[tips setText:@"支付密码必须为6位数字组合。\n您可依次进入 '功能列表' -> '安全中心' 修改支付密码。"];
[tips setFont:[UIFont boldSystemFontOfSize:12]];
tips.textAlignment = NSTextAlignmentLeft;
tips.numberOfLines = 0; // 关键一句