Created
February 4, 2018 06:25
-
-
Save jakubpetrik/218dd24885b36ad9fa7b48185c6f9894 to your computer and use it in GitHub Desktop.
TableController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@objc protocol TableControllerDataSource { | |
func tableController(_ controller: TableController, numberOfRowsInSection section: Int) -> Int | |
func tableController(_ controller: TableController, cellControllerForRowAt indexPath: IndexPath) -> TableViewCellController | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment