1.通知中心
//注册通知中心
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(WeiXinRegisterAndLogin) name:@"weixin" object:nil];//self是当前注册通知者,WeiXinRegisterAndLogin发送通知时执行的方法,@"weixin"通知的名字,object通知附带的信息
// 发送通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"weixin" object:nil];