2

画像を表示するカスタム行を作成しようとしています。そこで、Eureka のページに示されている基本的なカスタム行を試すことから始めました: https://github.com/xmartlabs/Eureka#basic-custom-rows

私が使用しているコードは次のとおりです。

import Eureka

    public class CustomCell2: Cell<Bool>, CellType{
        @IBOutlet weak var switchControl: UISwitch!
        @IBOutlet weak var label: UILabel!

        public override func setup() {
            super.setup()
            switchControl.addTarget(self, action: #selector(CustomCell2.switchValueChanged), forControlEvents: .ValueChanged)
        }

        func switchValueChanged(){
            row.value = switchControl.on
            row.updateCell() // Re-draws the cell which calls 'update' bellow
        }

        public override func update() {
            super.update()
            backgroundColor = (row.value ?? false) ? .whiteColor() : .blackColor()
        }
    }
    public final class CustomRow: Row<Bool, CustomCell2>, RowType {
        required public init(tag: String?) {
            super.init(tag: tag)
            // We set the cellProvider to load the .xib corresponding to our cell
            cellProvider = CellProvider<CustomCell2>(nibName: "CustomCell2")
        }
    }

これは CustomCell2.swift として保存されます。これを使用してそのカスタム行を呼び出しています:futurSection <<< CustomRow ("")

しかし、私はエラーが発生しています:Could not load NIB in bundle with name 'CustomCell2'

そして、それをUIImageに変更するにはどうすればよいですか?

4

1 に答える 1