如何在应用程序中保存和加载 UIButton 的 alpha 值?
我正在尝试将“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真的不明白你想要做什么,但这里是你如何提取按钮背景颜色的 alpha 分量并保存它(我还没有编译这个,但这应该接近):
现在你可以使用setFloat:forKey: 将值保存到 NSUserDefaults:
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):
Now you can use setFloat:forKey: to save the value to the NSUserDefaults:
使用 NSUserDefaults 来存储和加载 alpha 值。
Use NSUserDefaults to store and load the alpha values.