UILabel属性&API汇总 发表于 2017-11-10 更新于 2024-06-27 分类于 iOS 1.设置文本及颜色 12button.text = @"yifan";button.textColor = [UIColor whiteColor]; 2.UILabel居左/中/右对齐 123_label.textAlignment = NSTextAlignmentLeft;_label.textAlignment = NSTextAlignmentRight;_label.textAlignment = NSTextAlignmentCenter;