You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
462 B
30 lines
462 B
// |
|
// 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
|
|
|