当我的应用程序启动时,我需要比较ftp上的文件数和我的CoreData实体中的数据数。如果ftp上的文件数量超过实体中的数据数量,应用程序将开始下载。
如何知道我的ftp文件夹中json文件的数量?
修改
这是与ftp的连接代码:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"ftp:...json"]];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSError *error = nil;
if (!responseData) {
return;
}
NSDictionary *ingredientsDictionary = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
if (!ingredientsDictionary) {
return;
}
//inserting to CoreData