Skip to content

Instantly share code, notes, and snippets.

@rajajawahar
Created May 14, 2018 11:38
Show Gist options
  • Save rajajawahar/bbd729b423fd5b31e7053365610c7448 to your computer and use it in GitHub Desktop.
Save rajajawahar/bbd729b423fd5b31e7053365610c7448 to your computer and use it in GitHub Desktop.
import UIKit
protocol BasePresenter {
// Protocol does not support generics, so we have added associated type,
// Anything that conforms to BasePresenter
associatedtype View
func attachView(view : View)
func detachView()
func destroy()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment