gpt4 book ai didi

iphone - postNotification 正确触发函数,但 userinfo(NSDictionary) 没有任何内容

转载 作者:行者123 更新时间:2023-12-03 20:43:05 26 4
gpt4 key购买 nike

我使用下面的代码来通知菜单选择索引

    NSDictionary *userInfo=  [NSDictionary dictionaryWithObject:[NSString stringWithFormat:@"123"] 
forKey:@"Index"];
[[NSNotificationCenter defaultCenter] postNotificationName: @"notifyToMenuSelectionNotification"
object: userInfo];



-(void)menuSelectionNotification:(NSNotification *)notification
{
NSLog(@"%@", notification.userInfo);


}

menuSelectionNotification 已正确触发,

但是 NSLog 输出 notification.userInfo 仍然是 {null}

欢迎任何评论1

最佳答案

您以错误的方式传递对象。请尝试这个 -

NSDictionary *userInfo=  [NSDictionary dictionaryWithObject:[NSString stringWithFormat:@"123"] 
forKey:@"Index"];

[[NSNotificationCenter defaultCenter] postNotificationName:@"notifyToMenuSelectionNotification"
object:nil
userInfo:userInfo];

关于iphone - postNotification 正确触发函数,但 userinfo(NSDictionary) 没有任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10119534/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com