作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要知道是否可以从后台调用 json webservices,当用户按下主页按钮时,我从后台执行调用此方法
- (void) runTimer
{
[NSThread detachNewThreadSelector:@selector(updateAllVisibleElements)toTarget:self withObject:nil];
}
- (void) updateAllVisibleElements {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if(service == nil)
{
service = [[WebService alloc] init];
}
[service getlocationID:currentLatitude andlongitude:currentLongitute];
[pool release];
}
并且调用了函数[service getlocation id],但是之后它没有显示任何响应或数据接收并且应用程序终止,请帮助我
最佳答案
如果您希望应用程序进入后台后立即发生,您可以使用 -[UIApplication beginBackgroundTaskWithExpirationHandler:]
。只要任务不会花费太长时间,这应该可行。
关于iphone - 如何在iPhone后台调用JSON webservice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6665192/
我是一名优秀的程序员,十分优秀!