如何将 NSthread 函数从一个视图传递到另一个视图
我正在使用 NSThread
例如:
NSThread *driverThread = [[NSThread alloc] initWithTarget:self selector:@selector(**pingHomeThread**) object:nil];
[driverThread start];
in AppDelegate.m i want to execute **pingHomeThread** function in another view like myExample.m as
-(void) pingHomeThread{
}
我如何实现这个?
I am using NSThread
Ex:
NSThread *driverThread = [[NSThread alloc] initWithTarget:self selector:@selector(**pingHomeThread**) object:nil];
[driverThread start];
in AppDelegate.m i want to execute **pingHomeThread** function in another view like myExample.m as
-(void) pingHomeThread{
}
How can i implement this one ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需更改目标(我不知道您的 ** 是否希望在那里执行操作,但它们不应该如此),即更改
为
Just change the target (i don't know want your ** are doing there but they shouldn't be), i.e change
to