_yifan

Coder

写了个Mac下SourceTree文件导出功能的shell脚本,用于自定义操作,可实现类似于TortoiseGit的导出文件功能

  1. 脚本内容
阅读全文 »

1.设置文本及颜色

1
2
button.text = @"yifan";
button.textColor = [UIColor whiteColor];

2.UILabel居左/中/右对齐

1
2
3
_label.textAlignment = NSTextAlignmentLeft;
_label.textAlignment = NSTextAlignmentRight;
_label.textAlignment = NSTextAlignmentCenter;
0%