NSUserDefaults限制整数?
是否可以限制 NSUserDefaults 中的整数? 当然,您可以在应用程序中限制它,但我正在考虑“设置”中的文本字段。
得到一些提示会很高兴。
多谢。
Is it possible to limit an integer in the NSUserDefaults?
Off course you can limit it within your app but I am thinking of the TextFields in Settings.
Would be great to get some hints.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我编写了一个小型 VRAppSettings 超类来涵盖这种情况。
它允许通过对象的属性存储您的应用程序设置,然后自动将该对象存档到用户默认值。
这是如何做到的。创建 VRAppSettings 类的后继者:
然后
MySettings
可以用作单例,具体方法如下:在上面的代码中,传递给 myInt 的值将在
- setMyInt
setter 中进行检查,并始终介于80
和110
之间。MySettings
单例将存储在用户默认值中。另请参阅我的 博客记录了解更多详情。
I wrote a small VRAppSettings superclass covering that case.
It allows to store your app settings via properties of an object, then archive that object to user defaults automatically.
Here how it can be done. Make a successor of the VRAppSettings class:
Then
MySettings
can be used as singleton, here how:In the code above values passed to myInt will be checked in the
- setMyInt
setter and always be between80
and110
.MySettings
singleton will be stored in user defaults.See also my blog record for more details.