Add select URL Builder dialog

This commit is contained in:
Maurice Parker
2020-04-23 04:44:26 -05:00
parent e11cf2ccf5
commit 4461cf83cb
6 changed files with 178 additions and 3 deletions

View File

@@ -65,6 +65,12 @@ class AddWebFeedViewController: UITableViewController, AddContainerViewControlle
}
@IBAction func showURLBuilder(_ sender: Any) {
let navController = UIStoryboard.add.instantiateViewController(withIdentifier: "SelectURLBuilderNavViewController") as! UINavigationController
navController.modalPresentationStyle = .currentContext
present(navController, animated: true)
}
func cancel() {
userCancelled = true
delegate?.processingDidCancel()