微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – NSUserDefaults日志中的错误

我在日志中收到一些错误消息

[User Defaults] Failed to write value for key GameId in CFPrefsPlistSource<0x1740faf00> (Domain: xxx.xxxxxx,User: kcfPreferencesCurrentUser,ByHost: No,Container: (null)): Path not accessible,switching to read-only
[User Defaults] attempt to set <private> for key in <private> in read-only (due to a prevIoUs Failed write) preferences domain CFPrefsPlistSource<0x1740faf00> (Domain: xxx.xxxxxx,Container: (null))

是什么原因造成的?

这就是我使用NSUserDefaults的方式:

- (Nsstring *)gameId
{
    if (_gameId)
        return _gameId;

    _gameId = [[NSUserDefaults standardUserDefaults] objectForKey:@"GameId"];
    return _gameId;
}

- (void)setGameId:(Nsstring *)aGameId
{
    _gameId = aGameId;
    [[NSUserDefaults standardUserDefaults] setobject:_gameId forKey:@"GameId"];
    [[NSUserDefaults standardUserDefaults] synchronize];
}

解决方法

很多人在Xcode 8上发现了这个问题。

“因为听起来很疯狂,尝试重新启动手机和主机,有时Xcode可能会因为理由而被卡住,只有重启有帮助。

使用Xcode 8.1 Beta构建,您将看到相同的警告,但您也将获得该值。 “

参考:https://forums.developer.apple.com/thread/51348

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐