Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用一个键绑定文本字段,NSUserDefaults“选择文件...”按钮修改模型。
NSUserDefaults
但是单击按钮后文本字段不会更新。我必须重新打开窗口才能看到新值已填充到文本字段中。
我在这里想念什么?
这是因为我的钥匙有一个点“。” 其中混淆了数据绑定。
它是: [ defaults setValue: xxx forKey:@"proxy.url"]
[ defaults setValue: xxx forKey:@"proxy.url"]
它应该是: [ defaults setValue: xxx forKey:@"proxy_url"]
[ defaults setValue: xxx forKey:@"proxy_url"]