- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
经过大量搜索,我无法找到是否需要将字典对象传递给:
[NSUserDefaultsDidChangeNotification addObserver: forKeyPath: options: context:];
如果我想收到有关 userDefaults 中的单个更改的通知,应该在选项中提供什么。另外什么是键路径?
最佳答案
NSUserDefaultsDidChangeNotification
只是默认值更改时发出的通知。要监听它,您需要以下代码:
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self
selector:@selector(defaultsChanged:)
name:NSUserDefaultsDidChangeNotification
object:nil];
当通知被触发时,这将调用方法defaultsChanged:。您需要像这样实现此方法:
- (void)defaultsChanged:(NSNotification *)notification {
// Get the user defaults
NSUserDefaults *defaults = (NSUserDefaults *)[notification object];
// Do something with it
NSLog(@"%@", [defaults objectForKey:@"nameOfThingIAmInterestedIn"]);
}
关于iphone - 如何在 iPhone 上接收 UserDefaults DidChangeNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3166563/
我的应用程序使用 iPodMusicPlayer,当暂停时,用户可能会出去并在 Apple 的音乐应用程序中进行更改,例如创建或修改播放列表,然后返回到我的应用程序。 我收到了预期的 MPMediaL
我正在处理的项目有一个将数据写入 UserDefaults 的扩展。然后在包含的应用程序中,UI 应该根据更改进行更新。问题是 UserDefaults.didChangeNotification除非
我不知道应该包含什么头文件。 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loadStateDi
在class ViewController: NSViewController中 class ViewController: NSViewController { override func
经过大量搜索,我无法找到是否需要将字典对象传递给: [NSUserDefaultsDidChangeNotification addObserver: forKeyPath: options: con
Apple 文档说我们需要注册 NSUbiquityIdentityDidChangeNotification 并将当前 iCloud token 与之前存储在 NSUserDefaults 中的 t
有谁知道更换旧的正确方法QTMovieCurrentSizeAttribute和 QTMovieSizeDidChangeNotification任务?我正在尝试清除旧的弃用代码。 我发现 QTMov
这是我当前的代码 func applicationDidBecameActive(notification:NSNotification) { println("Application is
我是一名优秀的程序员,十分优秀!