0

当我的应用程序启动时,我需要比较 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
4

0 回答 0