viewwillappear 、 viewwilldisappear 和 viewdidload、dealloc
如果 是详情页面 跳转到详情页面或者同一个页面类型跳转,这个时候 一定得使用viewwillappear 不然上一个页面也会出现响应通知。
object:携带数据。并不是指定对象接受。可以接受 nsarray等。
userInfo:代表传值
方法1:[[NSNotificationCenter defaultCenter] postNotificationName:@"First"object:@"博客园"];
方法2:
NSDictionary*dict=[[NSDictionary alloc]initWithObjects:@[@"keso"] forKeys:@[@"key"]];
[[NSNotificationCenter defaultCenter] postNotificationName:@"Second"object:@"http://www.cnblogs.com"userInfo:dict];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationFirst:) name:@"First"object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationSecond:) name:@"Second"object:nil];
-(void)notificationFirst:(NSNotification *)notification{
NSString*name=[notification name];
NSString*object=[notificationobject];
NSLog(@"名称:%@----对象:%@",name,object);
}-(void)notificationSecond:(NSNotification *)notification{
NSString*name=[notification name];
NSString*object=[notification object];
NSDictionary*dict=[notification userInfo];
NSLog(@"名称:%@----对象:%@",name,object);
NSLog(@"获取的值:%@",[dict objectForKey:@"key"]);
}