docs: 批量博文

This commit is contained in:
杭城小刘
2020-02-25 17:46:51 +08:00
parent 8e5d2c9e7f
commit 6e99436a9e
373 changed files with 18071 additions and 1116 deletions

10
Chapter1 - iOS/1.17.md Normal file
View File

@@ -0,0 +1,10 @@
# 对于不可调节高度的UI控件进行改变frame
* 对于不能调节高度的控件比如 UISlider、UISwitch、UIProgressView 等控件的宽高可以用 \(仿射变化\)transform 属性控制高度。
```
myswitch.transform = CGAffineTransformMakeScale(1,5);
```