Linha personalizada em Eureka

Estou tentando criar uma linha personalizada que mostra uma imagem. Comecei tentando a linha personalizada básica indicada na página de Eureka:https://github.com/xmartlabs/Eureka#basic-custom-rows

Aqui está o código que estou usando:

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")
        }
    }

E isso é salvo como CustomCell2.swift. Estou chamando essa linha personalizada usando isso:futurSection <<< CustomRow ("")

Mas estou recebendo um erro:Could not load NIB in bundle with name 'CustomCell2'

E como faço para transformar isso em uma UIImage?

questionAnswers(1)

yourAnswerToTheQuestion