0
The original error was that you had called "presentedViewController", which is a property, rather than "presentViewController()" which is a method. It was two little letters, it’s easy to confuse :-)
0
1
The original error was that you had called "presentedViewController", which is a property, rather than "presentViewController()" which is a method. It was two little letters, it’s easy to confuse :-)
1
In Swift 3, the method presentViewController(_:Animated:Completion:) was replaced by (present_:Animated:Completion:)
self.present(myAlert, animated: true, completion: nil)
Browser other questions tagged ios swift swift-playground
You are not signed in. Login or sign up in order to post.
Good, Rafael that was already, thank you
– An. Jorge