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 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题