On 13 Jul 2014, at 11:31 pm, John Tsombakos < email@hidden> wrote:
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.
Which is the way I randomly had it when I typed it in.
I think that's worthy of a bug report, shouldn't take too long to file a project like that with two classes, one one way, one the other and show the difference. |