UITableViewCell 和 UISwitches - iPhone SDK
我试图为 UITableView 中的每个单元格保存 UISwitch 的状态。有办法做到这一点吗?我正在考虑使用 NSUserDefault,但我不太确定是否使用给定名称保存值,然后在创建单元格时检索该状态。任何建议都会很好!
谢谢,
凯文
I am trying to save the states of an UISwitch for each cell in my UITableView. Is there a way to do this? I was thinking of using the NSUserDefault but I'm not too sure about saving the values with a given name and then retrieving that state when the cells are created. Any suggestions would be nice!
Thanks,
Kevin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用以下示例代码;
我希望,它会对你有所帮助。
you can try with following sample code;
I hope, it will help you.
我会用 NSUserDefaults 来做到这一点。
I would do it with NSUserDefaults.