Last active
June 10, 2019 22:13
-
-
Save FitzAfful/d6c975be08818c68556935f5967a2d3a to your computer and use it in GitHub Desktop.
Gist to show benefits of Extensions in Swift
This file contains hidden or 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
import UIKit | |
class FirstFruitsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { | |
} |
This file contains hidden or 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
import UIKit | |
class SecondFruitsViewController: UIViewController { | |
} | |
extension SecondFruitsViewController : UITableViewDelegate { | |
} | |
extension SecondFruitsViewController : UITableViewDataSource { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment