A控制器发出通知 加上跳转到B控制器
- (IBAction)goToXInFuTong:(id)sender {
[[NSNotificationCenter defaultCenter] postNotificationName:@"goToXinFuTong" object:nil];
[self finish];
}
B控制器
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:YES];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(yfSetingView) name:@"goToXinFuTong" object:nil];
}
-(void)yfSetingView{
NSArray *arr = self.navigationController.viewControllers;
YFTabBarController *tab=arr[0];
tab.selectedIndex=2;
// tab.tabBar.selectedItem.title=@"我的";
tab.title=@"我的";
tab.tabBar.tintColor = kDefault_System_Color;
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
self.navigationController.navigationBarHidden = NO;
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"goToXinFuTong" object:nil];
}
居然走不进去yfSetingView方法,开始各种怀疑和不信了。结果发现
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"goToXinFuTong" object:nil];移除通知是不能写在viewWillDisappear方法里面的,原因是自己已经移除了。
但是不些移除是不行的,有时间只发送一次通知,却接受到几次通知。移除应该写在
- (void)dealloc
{
DLog(@"---%@ dealloc---",[self class]);
[[NSNotificationCenter defaultCenter] removeObserver:self name:kNotificationDownLoadImage object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:kNotificationShowPushMessage object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"goToXinFuTong" object:nil];
}
这样就完美了。补充一点就是
//这里可以取到TabBarController ,跟搭架构有关系。
NSArray *arr = self.navigationController.viewControllers;
YFTabBarController *tab=arr[0];
//如果指定的其他的索引,不是本来返回来的,就会乱,索引要在TabBarController的对象去设置标题,颜色等等,如果在setting我的控制器里面设置是不管用的。就会陷入尴尬的境地。
tab.selectedIndex=2;
// tab.tabBar.selectedItem.title=@"我的";
tab.title=@"我的";
tab.tabBar.tintColor = kDefault_System_Color;
网上知识补充:
一.dealloc 的使用
a. 什么情况下会调用呢?
当对象的引用计数为0,系统会自动调用dealloc方法,回收内存。
//调用方法
-(void)dealloc{
// [super dealloc]; //ARC环境下不需要调用。因为系统会 自动调用该方法帮助释放父类对象。
}
b.调用的顺序
一般说调用的顺序是,当子类的对象释放完时,然后再释放父类的所拥有的实例。这一点与调用初始化方法,正好相反。
二.dealloc 误区
我们在开发过程中,用到dealloc,却因不会意识得到对象的引用计数是不是为0,dealloc到底走了没走,因而导致内存暴增,还会遇到很多奇怪的问题。我们需要知道dealloc不被调用的几种情况?
controller中使用了计时器 NSTimer 使用后没有销毁 导致循环引用
self.playerTimer = [NSTimerscheduledTimerWithTimeInterval:1target:selfselector:@selector(playProgressAction)userInfo:nilrepeats:YES];
使用后记得销毁
[_playerTimerinvalidate]
_playerTimer =nil;
2.协议delegate 应该使用weak修饰,否则会引起循环引用 不能释放内存
@property (nonatomic,weak)id
3.使用到block的地方,block回调中不能直接使用self 否则可能引起循环引用。
__weaktypeof(self) weakSelf =self;
_audioStream.onCompletion=^(){
[weakSelf nextButtonAction];
};
三.自己的案例
昨天我遇到一奇葩问题,用得到(NSNotificationCenter)通知,我明明只发送一次通知,却接受到几次通知,ViewController POP返回后,再次push进来,又多收一次通知,意识到可能通知没有移除,我的方法:
-(void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"delectOrGoDownProject" object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"changerInfoItem" object:nil];
}