Skip to content

Instantly share code, notes, and snippets.

@FitzAfful
Last active June 10, 2019 22:13
Show Gist options
  • Save FitzAfful/d6c975be08818c68556935f5967a2d3a to your computer and use it in GitHub Desktop.
Save FitzAfful/d6c975be08818c68556935f5967a2d3a to your computer and use it in GitHub Desktop.
Gist to show benefits of Extensions in Swift
import UIKit
class FirstFruitsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
}
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