// // BasePresenter.m // MVPDemo3 // // Created by mobao on 16/6/22. // Copyright © 2016年 mobao. All rights reserved. // #import "BasePresenter.h" @interface BasePresenter() @end @implementation BasePresenter - (instancetype)initWithViewController:(UIViewController*)vc{ self = [super init]; if (self) { self.vc = vc; } return self; } - (void)dealloc{ [[NSNotificationCenter defaultCenter] removeObserver:self]; } @end