A row for Eureka to put two rows side by side into the same UITableViewCell.
By MANDELKIND.
SplitRow
is a custom row for Eureka designed to put two rows side by side into the same UITableViewCell.
import SplitRow
class ViewController: FormViewController {
override func viewDidLoad() {
super.viewDidLoad()
form +++ Section()
<<< SplitRow<PushRow<String>,TextRow>(){
$0.rowLeft = PushRow<String>(){
$0.selectorTitle = "E-Mail"
$0.options = ["Private","Work","Others"]
}
$0.rowRight = TextRow(){
$0.placeholder = "E-Mail"
}
}.onChange{
print("SplitRow.onChange:","left:",$0.value?.left,"right:",$0.value?.right)
}
}
}
- iOS 9.0+
- Xcode 9.0+
- Eureka ~> 4.1
- If you want to contribute please feel free to submit pull requests.
- If you have a feature request please open an issue.