搜索文档目录和主包
uitableview (aqgridview) 必须在网格中的特定位置显示基于文档名称的标题字符串。该名称显然与任一目录中的文件名相对应。但我的问题是我在我的包中定义了一个包含 4 个文档的静态 NSString,并且我可以轻松获取它们的标题。但我想获取我的应用程序包和文档目录中包含的文件的名称。当我使用文档目录中的内容加载应用程序时,它只是不断重复 4 个静态字符串标题。可根据要求提供代码。
A uitableview (aqgridview) must display a title string based on the name of the document at a certain position in the grid. The name obviously corresponds to the name of the file in either directory. But my problem is that I defined a static NSString of 4 documents in my bundle, and I can easily get their titles. But I want to get the names of the files contained in both my app bundle and of the documents directory. When I load my app with something from the documents directory, it just keeps repeating the 4 static string titles. Code available on request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
NSDirectoryEnumerator
与NSFileManager
方法enumeratorAtPath
一起使用,从资源和文档目录中获取文件列表。Use a
NSDirectoryEnumerator
together with theNSFileManager
methodenumeratorAtPath
to get the filelists from the resource and the doc dir.