Writing a class in Swift that implements a protocol, for instance something like:
class myGreat Class : UIViewController, UITableViewDelegate, UITableViewDataSource {
// EMPTY
}
Shows an error because of missing methods from the protocols...
Is there any keyboard shortcut to add the missing methods with empty implementations? I am used to do it in Java with IntelliJ with Alt+Enter but I can't find any similar shortcut for Swift and XCode