ios – NSNotificationCenter多次呼叫

前端之家收集整理的这篇文章主要介绍了ios – NSNotificationCenter多次呼叫前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的应用程序中实现了NSNotificationCenter.我在完成图像解码时发送通知.第一次图像解码将完成8次.所以通知假设发送8次.但它调用64次(8 * 8).

这是我的代码我是如何实现的 – >
//初始化

  1. - (id)initWithFrame:(CGRect)frame
  2. {
  3. self = [super initWithFrame:frame];
  4. if (self) {
  5.  
  6. [[NSNotificationCenter defaultCenter] addObserver:self
  7. selector:@selector(getHRImage:)
  8. name:@"DecodeComplete" object:nil];}

//调用方法

  1. -(void)getHRImage:(NSNotification *) notification
  2. {
  3.  
  4. if ([[notification name] isEqualToString:@"DecodeComplete"])
  5. NSLog (@"Successfully received the DecodeComplete notification! ");
  6. }`

//解除分配

  1. - (void) dealloc
  2. {
  3. [[NSNotificationCenter defaultCenter] removeObserver:self name:@"DecodeComplete" object:self];
  4. //[super dealloc];
  5. }

//发布通知

  1. [[NSNotificationCenter defaultCenter] postNotificationName:@"DecodeComplete" object:self];

有人可以建议我做错了.

提前致谢.

//调用方法是这样的(调用8次)

  1. -(void)decode
  2. {
  3. NSLog(@"---------- Decoding is Complete ---------");
  4. [[NSNotificationCenter defaultCenter] postNotificationName:@"MdjDecodeComplete" object:self];
  5.  
  6. }

解决方法

解:
我重新检查了我的代码,initWithFrame:(CGRect)框架调用了8次,并添加了8次NSNotification观察器.

所以我改变了这样的代码,—>>初始化.

  1. static bool note=YES;
  2. - (id)initWithFrame:(CGRect)frame
  3. {
  4. self = [super initWithFrame:frame];
  5. if (self) {
  6. if(note)
  7. [[NSNotificationCenter defaultCenter] addObserver:self
  8.  
  9. selector:@selector(getHRImage:)
  10. name:@"DecodeComplete" object:nil]; note=NO;}

—>>取消分配

  1. - (void) dealloc
  2. {
  3. note=true;
  4.  
  5. [[NSNotificationCenter defaultCenter] removeObserver:self name:@"DecodeComplete" object:nil];
  6. //[super dealloc];
  7. }

现在addObserver方法调用一次,所以我的问题解决了.谢谢大家的宝贵指导.

猜你在找的iOS相关文章