Load UITableView From CSV Database File?
Is it possible to load a UITableView with a database in CSV format? Or is there an easy way to convert this to a .plist first or 开发者_高级运维something similar? Any advice would be helpful. Thanks.
And if you want to know how to read a CSV file, I've written a library to do that:
https://github.com/davedelong/CHCSVParser
Please remember that using it means you must abide by the license under which the code is made available.
You can load UITableView using any sort of data you want. Just create a datasource that implements UITableViewDataSource.
This documentation is also helpful: Table View Programming Guide for iOS
精彩评论