使用本地文件填充表视图
如何使用本地文件填充表视图。 我需要使用什么。如果我结合使用 NSFileManager 和 UITableView 可以吗?
How can i populate table view with local files.
What do i need to use. Will it be possible if i use NSFileManager and UITableView in combination ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSFileManager 的 directoryContentAtPath 获取给定路径中所有文件和目录的列表。 DirectoryContentAtPath 返回 NSArray,使用相同的内容填充表。
use NSFileManager's directoryContentAtPath to get the list of all the files and directory at a given path. directoryContentAtPath returns NSArray, use the same to populate the table.