如何将 NSthread 函数从一个视图传递到另一个视图

发布于 2024-12-11 23:07:58 字数 356 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

哑剧 2024-12-18 23:07:58

只需更改目标(我不知道您的 ** 是否希望在那里执行操作,但它们不应该如此),即更改

NSThread *driverThread = [[NSThread alloc] initWithTarget:self selector:@selector(pingHomeThread) object:nil];

NSThread *driverThread = [[NSThread alloc] initWithTarget:yourOtherView selector:@selector(pingHomeThread) object:nil];

Just change the target (i don't know want your ** are doing there but they shouldn't be), i.e change

NSThread *driverThread = [[NSThread alloc] initWithTarget:self selector:@selector(pingHomeThread) object:nil];

to

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