如何在子视图内的表中显示数据

时间:2014-09-30 20:00:55

标签: ios objective-c uitableview uiview xcode5

我有一个ViewController,我在其中放置了另一个小UIView,我放置了一个TableView但不是如何在这个表中显示数组中的数据,这可能有所帮助。

UIView

我尝试使用UITableViewDelegate,UITableViewDataSource和方法numberOfSectionsInTableView,numberOfRowsInSection,numberOfRowsInSection

不起作用

2 个答案:

答案 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视图。