1

行数が異なるセクションを持つテーブルを作成しようとしています。ここで与えられた解決策を見て、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. 誰が間違っているのかを見つけることができますか?

4

1 に答える 1

0

teamSection有効な行タイプではないようです。ストーリーボードで 2 行のテーブルを設定し、そのうちの 1 つの ID を「teamSection」として正しく設定しましたか?

于 2015-03-21T15:11:07.173 に答える