如何在应用程序中保存和加载 UIButton 的 alpha 值?

发布于 2024-12-03 07:21:10 字数 357 浏览 0 评论 0原文

可能的重复:
我如何保存 UIButton 的属性和用按钮加载?

我正在尝试将“alpha”的值保存在我的应用程序中的 6 个 UIButtons 中。如何在按下按钮时保存状态并在按下另一个按钮时加载状态?

我对这种保存和加载相当陌生,那么最简单的方法是什么?

到处搜索,似乎没有任何效果......

Possible Duplicate:
How would I save a UIButton's properties and load with a button?

I am trying to save the values of "alpha" in 6 UIButtons in my app. How can I save the states when a button is pressed and load them when another button is pressed?

I am fairly new to this saving and loading so what would be the easiest way of doing this?

Searched everywhere and nothing seems to work...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

享受孤独 2024-12-10 07:21:10

我真的不明白你想要做什么,但这里是你如何提取按钮背景颜色的 alpha 分量并保存它(我还没有编译这个,但这应该接近):

// get the alpha value from the CGColor components from the button's backgroundColor
UIColor* color = button.backgroundColor;
const CGFloat *components = CGColorGetComponents(color.CGColor);
CGFloat alpha = components[CGColorGetNumberOfComponents(color.CGColor)-1];

现在你可以使用setFloat:forKey: 将值保存到 NSUserDefaults:

// save alpha value (0.0=transparent to 1.0=opaque)
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setFloat:alpha forKey:@"buttonColorKey"];   // use your own key string

I really don't understand what you're trying to do, but here is how you would extract the alpha component of a button's background color and save it (I haven't compiled this but this should be close):

// get the alpha value from the CGColor components from the button's backgroundColor
UIColor* color = button.backgroundColor;
const CGFloat *components = CGColorGetComponents(color.CGColor);
CGFloat alpha = components[CGColorGetNumberOfComponents(color.CGColor)-1];

Now you can use setFloat:forKey: to save the value to the NSUserDefaults:

// save alpha value (0.0=transparent to 1.0=opaque)
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setFloat:alpha forKey:@"buttonColorKey"];   // use your own key string
﹏雨一样淡蓝的深情 2024-12-10 07:21:10

使用 NSUserDefaults 来存储和加载 alpha 值。

Use NSUserDefaults to store and load the alpha values.

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