我创建了一个单例来执行一些服务器请求。但是对于某些请求,我需要返回结果。从调用类中获取它们的最佳方法是什么(使用单例)?
这是单例在接收到数据时调用的方法。我应该将目标和选择器传递给单例以执行调用程序类的方法吗?
- (void)connectionDidFinishLoadingNSURLConnection *)connection
{
// do something with the data
//invoking passed selector here ?
// receivedData is declared as a method instance elsewhere
NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]);
// release the connection, and the data object
[connection release];
[receivedData release];
}
谢谢
在委托(delegate)内部传递本地通知比接收调用程序类的选择器要好。任何注册它的人都可以处理该本地通知,从而最大限度地减少依赖性。
关于objective-c - 关于单例和调用方法的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7241814/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |