This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HorizontalPickerView: UIView, UIPickerViewDataSource, UIPickerViewDelegate { | |
let types = ["不循环","每天","每周","每月","每年"] | |
let sliderControl: UIPickerView = { | |
let view = UIPickerView() | |
view.transform = CGAffineTransform(rotationAngle: -90 * (.pi / 180)) | |
return view | |
}() | |
init() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Error Text | |
### 4.2 段落 | |
不使用 Markdown 标记(以下简称标记)的称之为段落。Base 0 段落间距未设置,因此推荐你通过换行来区分不同的段落,段落的前后要有空行,所谓的空行是指没有文字内容。若想在段内强制换行的方式是使用**两个以上**空格加上回车(引用中换行省略回车)。 | |
### 4.3 引用 | |
在段落的每行或者只在第一行使用符号`>`,就可以创建一个饮用,如: |
NewerOlder