广播机制

来源:互联网 发布:如何申请手机淘宝账号 编辑:程序博客网 时间:2024/05/16 01:56

如何收听广播

1

  在广播中心注册

 [NSNotificationCenter defaultCenter]

- (void)addObserver:(id)observer

                selector:(SEl)methodToInvokeIfSomethingHappens

                     name:(NSString *)name

                    object:(id)sender;

-(void)methodtoinvokeifsomethinghappens:(nsnotification *)notofication

{

        notification.name

       notification.object

         notification.userinfo

}

   2 关闭广播

     [center removeObserver:self];

   or

     [center removeObserver:self name:UIContentSizeCategoryDidChangeNotification object :nil];

0 0
原创粉丝点击