ortuman / SwiftForms

A small and lightweight library written in Swift that allows you to easily create forms.
MIT License
1.33k stars 209 forks source link

custom cell error #189

Open Raphael95 opened 4 years ago

Raphael95 commented 4 years ago

when i custom the cell, i implement the class FormBaseCell and override the function configure() and update(), also a variable named myImage as type UIImageView was defined in it. However, it raises an error "this class is not key value coding-compliant for the key myImage." while setting the property 'myImage' in FormViewController class using 'row.configuration.cell.appearance = ["myImage.image": UIImage(named: "Photo") as AnyObject]'. What should i do ?