NSUserDefaults限制整数?

发布于 2024-08-26 09:21:42 字数 100 浏览 4 评论 0原文

是否可以限制 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素衣风尘叹 2024-09-02 09:21:42

我编写了一个小型 VRAppSettings 超类来涵盖这种情况。

它允许通过对象的属性存储您的应用程序设置,然后自动将该对象存档到用户默认值。

这是如何做到的。创建 VRAppSettings 类的后继者:

@interface MySettings : VRAppSettings
@property (nonatomic, readwrite) NSInteger * myInt;
@end

@implementation MySettings
- (NSString *)userDefaultsKeyPostfix
{
    return @"MyAppsSettings";
}
- (void)resetToDeveloperDefaults
{ 
    // Set default values here
    self.myInt = 85;
}
- (void)checkAfterInitWithCoder { }

- setMyInt(NSString * myInt)
{
    NSInteger max = 110;
    NSInteger min = 80;

    if (myInt > max) myInt = max;
    if (myInt < min) myInt = min;
    _myInt = myInt;
}
@end

然后 MySettings 可以用作单例,具体方法如下:

[MySettings sharedInstance].myInt = 99;
[[MySettings sharedInstance] synchronizeToUserDefaults];

NSLog(@"myInt = %d", [MySettings sharedInstance].myInt);

在上面的代码中,传递给 myInt 的值将在 - setMyInt setter 中进行检查,并始终介于 80110 之间。 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:

@interface MySettings : VRAppSettings
@property (nonatomic, readwrite) NSInteger * myInt;
@end

@implementation MySettings
- (NSString *)userDefaultsKeyPostfix
{
    return @"MyAppsSettings";
}
- (void)resetToDeveloperDefaults
{ 
    // Set default values here
    self.myInt = 85;
}
- (void)checkAfterInitWithCoder { }

- setMyInt(NSString * myInt)
{
    NSInteger max = 110;
    NSInteger min = 80;

    if (myInt > max) myInt = max;
    if (myInt < min) myInt = min;
    _myInt = myInt;
}
@end

Then MySettings can be used as singleton, here how:

[MySettings sharedInstance].myInt = 99;
[[MySettings sharedInstance] synchronizeToUserDefaults];

NSLog(@"myInt = %d", [MySettings sharedInstance].myInt);

In the code above values passed to myInt will be checked in the - setMyInt setter and always be between 80 and 110. MySettings singleton will be stored in user defaults.

See also my blog record for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文