NSTimer iOS4 中的用户信息

发布于 2024-10-17 07:34:59 字数 434 浏览 1 评论 0原文

我想将一些数据传递给 fire 方法。所以我使用了

这样的“userInfo”:

struct MyStruct* userinfo = malloc(sizeof(struct MyStruct));

userinfo->a = 1;
userinfo->b = 2;

NSTimer *myTimer = [NSTimer scheduledTimerWithInterval:0.05 target:self selector:@selector(myFireMethod:) userInfo:userinfo repeats:YES];

但是问题发生了,iOS 应用程序在运行 scheduledTimerWithInterval 方法时崩溃了。

'userinfo' 肯定有问题。可能的错误是什么?

I want to pass some data to the fire method.So I use the 'userInfo'

I did like this:

struct MyStruct* userinfo = malloc(sizeof(struct MyStruct));

userinfo->a = 1;
userinfo->b = 2;

NSTimer *myTimer = [NSTimer scheduledTimerWithInterval:0.05 target:self selector:@selector(myFireMethod:) userInfo:userinfo repeats:YES];

But the problem happened,the iOS app crashed when running the scheduledTimerWithInterval method.

It must be something wrong with 'userinfo' .What's the probably mistake?

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

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

发布评论

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

评论(1

月下凄凉 2024-10-24 07:34:59

userInfo 必须是 Objective C 对象,因为它在赋值期间被保留。

如果你想传递 C 结构,你必须用 NSValue 包装它:

NSValue* val = [NSValue valueWithPointer: your_struct_ptr];

userInfo has to be Objective C object, cause it's retained during assignment.

If you want to pass C-struct you have to wrap it with NSValue:

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