gpt4 book ai didi

objective-c - 可能的? NSThread 通过单例 Objective-C iOS 请求 URL

转载 作者:行者123 更新时间:2023-11-29 04:26:10 25 4
gpt4 key购买 nike

情况。XMLProxy 类是单例的。 XMLRequest 类也是如此。

通常,当我想请求 URL 时。示例:

XMLProxy *xmlProxy = [XMLProxy sharedInstance];
[xmlProxy tryGetDataWithParameter:example_parameter];

// Method "tryGetDataWithParameter" will call method "requestURL" from XMLRequest Class

// Assume that is [xmlRequest requestURL];

// and XMLProxy Class (XMLProxy delegate) will create xml parser for each "example_parameter"
type to response xml data receive.

没问题。

有问题吗?我想创建可视化后台进程来请求 URL,并创建单例的 AutoSending 类。

I want to use AutoSending Class to call method "tryGetDataWithParameter" (from XMLProxy class). Example to call : [autoSending start];

-(void)start{ XMLProxy *xmlProxy = [XMLProxy sharedInstance]; [xmlProxy tryetDataWithParameter:example_parameter]; }

我可以使用 NSThread 来调用语句“[autoSending start]”吗?它是视觉后台进程的结果。

最佳答案

与其尝试自己编写所有这些代码,为什么不使用像 AFNetworking 这样的库?它构建在 NSURLConnectionNSOperation 和其他标准 IOS 技术之上。然后,您可以使用 NSOperationQueue 在另一个线程上运行您的请求。

关于objective-c - 可能的? NSThread 通过单例 Objective-C iOS 请求 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12315555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com