我正在尝试创建一个应用程序,使iPhone充当pendrive以共享所有类型的文件。
最初,我的mac中的文件夹中有一些文件(jpg,png,pdf,zip)。我需要在模拟器的表视图中显示这些文件。我正在使用NSMutableArray来保存这些文件。但我不知道如何将可变数组显示到表视图。
请帮帮我。提前致谢
答案 0 :(得分:0)
基本上你需要3个UITableViewDataSource方法
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 这是您可以将数据放入单元格的位置,即:“cell.textLabel.text = [array objectAtIndex:indexPath.row]”
(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 告诉tableview表中的部分,即
(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 该部分中的行数 - 即:[数组计数];