`
zani
  • 浏览: 350413 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

NSNotificationCenter带参数发送

 
阅读更多

NSMutableArray* testArray = [[[NSMutableArray alloc] initWithObjects:@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"11",@"12",
									 @"13",@"14", nil] autorelease];
		[[NSNotificationCenter defaultCenter] postNotificationName:kLoginSucceedNotificationKey object:testArray];



---

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loginSucceed:) name:kLoginSucceedNotificationKey object:nil];
	
-(void)loginSucceed:(NSNotification*)aNotification
{ 
	NSMutableArray* dataArray = [aNotification object];
}
--
[[NSNotificationCenter defaultCenter] removeObserver:self	 name:kLoginSucceedNotificationKey object:nil];
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics