developerWab 2013-04-07 06:53 采纳率: 0%
浏览 2054
已采纳

NSnotification 传递问题

有一个这样的方法:

-(void)didLoginWithAccount(MyAccount *)account

给这个方法添加了observer :

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didLoginWithAccount:)];

问题是发了通知,怎么传递一个MyAccount对象。

  • 写回答

2条回答 默认 最新

  • ReyZhang 移动开发领域新星创作者 2013-04-08 12:51
    关注

    1.添加观察者:

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didLoginWithAccount:) name:@"app:Login" object:nil];
    

    2.处理方法
    而处理的方法didLoginWithAccount: 它的定义应该如下

    -(void)didLoginWithAccount:(NSNotification*)notification
    

    3.发送通知,通知观察者

    MyAccount *account=.....;  //得到你的account信息,并传递给观察者
    [[NSNotificationCenter defaultCenter] postNotificationName:@"app:Login" object:account userInfo:nil];
    

    需要注意的是无论是定义观察者还是发送通知,它们的 NotificationName 必须一致,这是通知中心唯一能关联的方式,以此来判断是哪个发的通知,又有哪个来接收通知。

    在添加观察者的view 中,获取传递过来的account信息

    -(void)didLoginWithAccount:(NSNotification*)notification {
          MyAccount *account=(MyAccount*)[notification object];
          //todo....
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式