我有一个ViewController,我在其中放置了另一个小UIView,我放置了一个TableView但不是如何在这个表中显示数组中的数据,这可能有所帮助。
我尝试使用UITableViewDelegate,UITableViewDataSource和方法numberOfSectionsInTableView,numberOfRowsInSection,numberOfRowsInSection
不起作用
答案 0 :(得分:0)
首先设置UITableViewDelegate,UITableViewDataSource。
然后使用以下方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return generateImageOptionsArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
}
希望它对您有用
答案 1 :(得分:0)
您缺少的主要方法是: 的cellForRowAtIndexPath 用于显示单元格并调整其信息...并确保在主队列中的异步调度中调用show视图。