行数が異なるセクションを持つテーブルを作成しようとしています。ここで与えられた解決策を見て、WKInterfaceTableでセクションを作成する方法を次のように試しました:
tableView.setRowTypes(rowTypes);
for q in 0...rowTypes.count-1 {
if (rowTypes[q] == "teamSection") {
let row = tableView.rowControllerAtIndex(q) as? teamSection;
}
else {
let row = tableView.rowControllerAtIndex(q) as? teamRow;
}
}
私はrowTypes
次のように持っています:
let rowTypes = ["teamSection", "teamRow", "teamSection", "teamRow", "teamRow", "teamRow", "teamRow", "teamRow", "teamRow", "teamRow", "teamRow"];
私は11行を期待していましたが、すべてのteamRow
タイプであり、teamSection
. 誰が間違っているのかを見つけることができますか?