How often are NSUserDefaults synchronised?

2019-06-21 04:13发布

The documentation for NSUserDefaults says that the synchronise method is called periodically but does not mention how frequently. 10 minutes of Google searches did not reveal anything.

How frequently is the synchronise method called?

1条回答
做自己的国王
2楼-- · 2019-06-21 04:56

This is an implementation detail which is not disclosed (probably it isn't even a constant time interval). However, you can find it out yourself by performing a method swizzling on - [NSUserDefaults synchronize] and changing its implementation so that it calls NSLog() every time it's synchronized.

查看更多
登录 后发表回答