我已经为IOS做了一个应用程序,我在其中使用sqlite数据库,数据库在应用程序中是本地的。
现在我已经给出了应用程序从互联网下载数据并将其放入本地数据库并显示在用户面前的功能。我在 - (void)viewDidLoad
上提供了这个功能,这样当应用程序下载数据时,它会停止工作,直到完成下载部分,因为这个用户需要等待与应用程序交互。
现在我想在应用程序后台运行一个线程,该线程将连接互联网并更新应用程序而不会干扰用户。 请帮帮我。
我的下载和保存图片的代码是这样的:
-(void)Download_save_imagesNSString *)imagesURLPath NSString *)image_name
{
NSMutableString *theString = [NSMutableString string];
// Get an image from the URL below
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:NSURL URLWithString:imagesURLPath]]];
NSLog(@"%f,%f",image.size.width,image.size.height);
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
// If you go to the folder below, you will find those pictures
NSLog(@"%@",docDir);
[theString appendString"%@/"];
[theString appendString:image_name];
NSLog(@"%@",theString);
NSLog(@"saving png");
NSString *pngFilePath = [NSString stringWithFormat:theString,docDir];
NSData *data1 = [NSData dataWithData:UIImagePNGRepresentation(image)];
[data1 writeToFile:pngFilePath atomically:YES];
NSLog(@"saving image done");
[image release];
// [theString release];
}
当我调试应用程序时,我看到我的应用程序在下面一行花费了更多时间:
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:NSURL URLWithString:imagesURLPath]]];
如果您觉得 GCD 困难,您也可以使用 NSOperationQueue 和 NSBlockOperation。
NSBlockOperation *operation=[[NSBlockOperation alloc] init];
[operation addExecutionBlock:^{
//Your code goes here
}];
NSOperationQueue *queue=[[NSOperationQueue alloc] init];
[queue addOperationperation];
在 GCD 中您可以使用
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
//Your Code to download goes here
dispatch_async(dispatch_get_main_queue(), ^{
//your code to update UI if any goes here
});
});
根据您的需要使用任一 API。查看这个讨论 NSOperationQueue vs GCD 的线程了解更多信息。
关于iphone - 如何在应用程序后台运行一个不会影响我的应用程序用户界面的线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16207353/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |