You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a new UITableViewCell subclass that uses a UITextView to enter text and add to the list:
open func registerReuseIdentifierIfNeeded(_ reuseIdentifier: String) {
...
Add the supported type to the list:
/// The UI hints that are supported by this view controller.
open class var supportedUIHints: Set<RSDFormUIHint> {
return [.list, .textfield, .picker, .checkbox, .radioButton, .modalButton]
}
Handle any custom configuration:
open func configure(cell: UITableViewCell, in tableView: UITableView, at indexPath: IndexPath) {
...
The text was updated successfully, but these errors were encountered:
UITableViewCell
subclass that uses aUITextView
to enter text and add to the list:The text was updated successfully, but these errors were encountered: