如何使用 WritetoFile 将值存储在 NSArray 中?
我想使用 NSArray 存储表中选定单元格的索引,你能帮我吗......
i wana store the index of seleted cell of table using NSArray, can u help me....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用用户默认值或 属性列表为此。
用户默认值的示例。 你有一个控制器类,它可以访问索引,并在启动时加载它,并在更新时将其写入 plist 中:
如果你有某种控制器类,那么你可以将此代码放入
+ (void)initialize< /code>,如果 plist 中不存在该变量,它会初始化该变量:
在您的
-(void)awakeFromNib
(我假设您正在使用某种控制器类)中加载您最后存储的值:索引更新的地方(或者你想将其写入 plist 的地方),我们称之为
- (void)updateInterface
:You can use user defaults or property list for this.
Example on user defaults. You have a controller class that has access to the index and will load it at startup and write it into plist whenever it's updated:
If you have some kind of controller class then you would put this code into
+ (void)initialize
, it initialises the variable if it does not exists in plist:In your
-(void)awakeFromNib
(I'm assuming you're using some kind of controller class) load your last stored value:Somewhere where the index is updated (or where you want to write it to plist), let's call it
- (void)updateInterface
:我不知道我是否正确理解了这个问题,但听起来您可以使用属性列表来存储此信息。 属性列表非常易于使用,并且对于少量数据来说非常高效。
阅读“属性列表编程指南”以获得进一步的解释。 里面甚至还有教程。
I don't know if I understand the question correctly, but it sounds like you could use a property list to store this information. Property lists are very easy to use and quite efficient with small amounts of data.
Read the "Property List Programming Guide" for further explanation. There is even a tutorial in there.