From 33fe0218dbabd486198fdb3bf95c562fc4fdd2a6 Mon Sep 17 00:00:00 2001 From: leonmak Date: Sun, 23 Sep 2018 22:06:36 +0800 Subject: [PATCH] Reload table data after selection --- Sources/ImageRow.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/ImageRow.swift b/Sources/ImageRow.swift index c66eda2..4712a8d 100644 --- a/Sources/ImageRow.swift +++ b/Sources/ImageRow.swift @@ -94,6 +94,7 @@ open class _ImageRow: OptionsRow, PresenterRowType, ImageR presentationMode = .presentModally(controllerProvider: ControllerProvider.callback { return ImagePickerController() }, onDismiss: { [weak self] vc in self?.select() + self?.cell?.formViewController()?.tableView?.reloadData() vc.dismiss(animated: true) })