我試圖做一個SegmentedRow。在每個部分都有TextRows。這些TextRows在數量上是動態的。我試過了:動態TextRow尤里卡
+++ Section()
<<< SegmentedRow<String>("segments"){
$0.options = ["Assets", "Notes", "Photos"]
$0.value = "Assets"
}
+++ Section(){
$0.tag = "assets_s"
$0.hidden = "$segments != 'Assets'" // .Predicate(NSPredicate(format: "$segments != 'Sport'"))
}
for t in myarray{
<<< TextRow(){
$0.title = "Which is your favourite soccer player?"
}
}
我試着把for循環放在那裏,但是在後續行中出現錯誤。
你可以發佈什麼是myArray的? –