3."CallExtension"与宿主程序

2017-05-16  本文已影响9人  e85a0a8a9ba4

"callExtension"虽然作为一个拓展程序,但是他与宿主程序拥有两个不同的沙盒路径,所以数据无法共享!但是iOS 8.0 以后,苹果提供了一个叫做Appgroups的数据共享操作.

开启AppGroups

Paste_Image.png

AppGroups数据读写

//获取文件路径
    NSURL *fileUrl = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"AppGroups名称"];
    NSString *filePath = [fileUrl.absoluteString substringFromIndex:(@"file://".length)];
    NSString *filePathIdentification = [filePath stringByAppendingString:@"存储的文件名称"];
//读取数据
    NSArray *txlArr = [NSArray arrayWithContentsOfFile:filePathIdentification];
//获取文件路径
    NSURL *fileUrl = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"AppGroups名称"];
    NSString *filePath = [fileUrl.absoluteString substringFromIndex:(@"file://".length)];
    NSString *filePathIdentification = [filePath stringByAppendingString:@"存储的文件名称"];
//存入数据
    NSArray *callArr = [NSArray new];
    BOOL success = [callArr writeToFile:filePathIdentification atomically:YES];
上一篇下一篇

猜你喜欢

热点阅读