ios - 填充表格 View 单元格
<p><p>我目前有一个包含 2 个具有单独键的对象的字典,我想分别用每个对象填充一个表格 View 单元格。例如,比如说我的字典有 2 个对象,一个对象是北键,另一个对象是南键。现在我希望表格 View 有 2 个单元格,一个包含北,一个包含南。我该怎么做呢?到目前为止,我尝试了下面的代码,但这只会覆盖它。</p>
<pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell * cell = ;
if(cell == nil){
cell = [initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"];
}
NSMutableDictionary *news = (NSMutableDictionary *);
];
];
return cell;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果你确定你只有两个对象,你可以简单地使用这个:</p>
<pre><code>NSMutableDictionary *news = (NSMutableDictionary *);
if(indexPath.row==0){
];
}else if(indexPath.row==1){
];
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 填充表格 View 单元格,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20315943/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20315943/
</a>
</p>
页:
[1]