iPhone的performSelector改变对象类型

发布于 2024-08-18 23:56:01 字数 371 浏览 6 评论 0原文

我有一个带有方法 -(void)fire 的回调类,它调用
[目标performSelector:selector withObject:dictionary];
就在该行之前,我添加了 NSLog(@"%@", [[dictionary class] description]); 以查看对象更改的位置,调试时它返回 NSCFDictionary。

所以一切都很好。接下来,我添加了类似的行来获取被调用方法内的参数类型。现在,在调试时,它返回 NSCFString,而回调记录 NSCFDictionary。

一旦我调用performSelector,这个对象就会变成NSString,有什么原因吗?

I have a callback class with the method -(void)fire and it calls
[target performSelector:selector withObject:dictionary];
Just before that line I added NSLog(@"%@", [[dictionary class] description]); to see where the object changed, when debugging it returns NSCFDictionary.

So that was all fine. Next I went and added a similar line to get the arguments type inside the method being called. Now, when debugging, it returns NSCFString, whilst the callback logs NSCFDictionary.

Is there any reason why this object is becoming an NSString once I call performSelector?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

骷髅 2024-08-25 23:56:01

如果您使用performSelector:withObject:,则只能将一个参数传递给您的方法。

查看performSelector:withObject:withObject: 或使用NSInitation。

You can only pass one argument to your method if you use performSelector:withObject:.

Check out performSelector:withObject:withObject: or use NSInvocation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文