On Jul 13, 2014, at 11:14 AM, John Tsombakos < email@hidden> wrote: Well, not typing ‘func’ doesn’t help, I still don’t see all the methods.
Here I typed ‘tab’ and am looking for the numberOfRowsInSection method:
https://db.tt/ZyGDxDYv
Well I figured out something.. I’m sure it’s still a bug, but at least it’s a workaround…
If the class is defined like:
class SearchResultsViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, APIControllerProtocol {
then the data source methods DO NOT appear. However, defining the class like:
class SearchResultsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, APIControllerProtocol {
The data source methods DO appear! Swapping the order of the protocols makes a difference. |