我很高兴在不使用 NSTimer 对象的情况下让 NSSession 以一定的时间间隔重复自己,我正在寻找是否可以设置 NSURLRequest 的某些属性 还是我忽略的 NSURLSessionConfiguration ?
Best Answer-推荐答案 strong>
如果你不想使用 NSTimer,你可以使用 long pool 技术,你可以在其中配置 timeoutinterval。
(void)longPoll
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:30];
// --- Your code ---
[request release];
[pool drain];
[self performSelectorInBackgroundselector( longPoll ) withObject:nil];
}
关于ios - 如何让 NSURLSession 以一定的间隔重复?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29747207/
|