NSThread 带有类方法?
是否可以在单独的线程中运行类方法(以“+”开头)?通常我调用像 [myClass myController];
这样的方法,我尝试了 [NSThread detachNewThreadSelector:myController toTarget:myClass withObject:nil];
但没有成功。
Is it possible to run a class method (starting with a '+') in a separate thread? Normally I call the method like [myClass myController];
I tried [NSThread detachNewThreadSelector:myController toTarget:myClass withObject:nil];
without success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您只需要创建目标
[myClass class]
而不是myClass
。此外,您还忘记在选择器名称周围使用@selector()
。所以你想要:[NSThread detachNewThreadSelector:@selector(myController) toTarget:[myClass class] withObject:nil];
Yes, you just need to make the target
[myClass class]
instead ofmyClass
. Also you forgot to use@selector()
around the selector name. So you want:[NSThread detachNewThreadSelector:@selector(myController) toTarget:[myClass class] withObject:nil];