我从网上下载数据并将下载的数据插入到 sqlite 数据库中。现在我想要的是插入数据库的数据,这些数据应该在后台发生,同时下载用户也可以在视图上做其他事情。那么在后台进程中是否有可能将数据插入到 sqlite 中。
我正在使用它,但应用程序在使用它时崩溃。
NSNumber *number = [NSNumber numberWithInteger:1];
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(InsertIntodatabase)
object:number];
[queue addOperation:operation];
[operation release];
提前致谢