iPhone - 存储字符串数组?
Posted
技术标签:
【中文标题】iPhone - 存储字符串数组?【英文标题】:iPhone - Store an array of Strings? 【发布时间】:2010-10-09 00:53:25 【问题描述】:保存字符串数组最简单有效的方法是什么? 将数组存储在 DISK
【问题讨论】:
你到底是什么意思?在记忆中?在磁盘上?多少?您是否使用 Objective-C、C、C++ 进行编程?请澄清您的问题。 【参考方案1】:NSMutableArray *myMutableArray = [[NSMutableArray alloc] initWithCapacity:100];
int x = 0;
for(x=0; x<100;x++)
[myMutableArray insertObject: [NSString stringWithFormat:@"This is NSString number %d!",x+1] atIndex:x];
[myMutableArray writeToFile:filePath atomically:YES];
【讨论】:
以上是关于iPhone - 存储字符串数组?的主要内容,如果未能解决你的问题,请参考以下文章