Tip of App Groups

* Available for iOS 7

* Group path is different in iOS 7 and 8

ios7:file:///private/var/mobile/Containers/Shared/AppGroup/xxx

ios8:file:///private/var/mobile/Containers/xxx

* Userdeafults can't share in iOS7, but it won't raise any error.

* Enable App Groups will add *.entitlements in proj

* Delete all app relate to the App Groups, system will delete the dir in AppGroup either, next time install the app will use another UUID

 

 

- (IBAction)doSet:(id)sender{
    NSUserDefaults *def = [[NSUserDefaults alloc] initWithSuiteName:@"group.myappgroup"];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSString *s = [dateFormatter stringFromDate:[NSDate date]];
    NSLog(@"set value:%@",s);
    [def setValue:s forKey:@"dt"];
    [def synchronize];
}

- (IBAction)doGet:(id)sender{
    NSUserDefaults *def = [[NSUserDefaults alloc] initWithSuiteName:@"group.myappgroup"];
    NSLog(@"%@", [def valueForKey:@"dt"]);
    self.title = [def valueForKey:@"dt"];
}

- (IBAction)doWrite:(id)sender{
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSString *s = [dateFormatter stringFromDate:[NSDate date]];
    NSURL *url = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.myappgroup"];
    url = [url URLByAppendingPathComponent:@"a.dat"];
    NSLog(@"%@",url.absoluteString);
    NSError *err = NULL;
    [s writeToURL:url atomically:YES encoding:NSUTF8StringEncoding error:&err];
    if(err){
        NSLog(@"err:%@",err.description);
    }
}

- (IBAction)doReadFile:(id)sender{
    NSURL *url = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.myappgroup"];
    url = [url URLByAppendingPathComponent:@"a.dat"];
    NSLog(@"%@",url.absoluteString);
    NSError *err = NULL;
    NSString *s = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&err];
    if(!err){
        NSLog(@"%@",s);
        self.title = s;
    }else{
        NSLog(@"err:%@",err.description);
    }
}

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值