Skip to content

Instantly share code, notes, and snippets.

@oszydlowski
Created December 12, 2018 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oszydlowski/33a4e4da4f1259f2bd4b641e31c836d9 to your computer and use it in GitHub Desktop.
Save oszydlowski/33a4e4da4f1259f2bd4b641e31c836d9 to your computer and use it in GitHub Desktop.
import UIKit
protocol SomeModuleNameView: class { }
final class SomeModuleNameViewController: BaseViewController, SomeModuleNameView {
fileprivate var _presenter: SomeModuleNamePresenter {
return presenter as! SomeModuleNamePresenter
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment