ios - 如何读取 plist 文件然后填充 UItableView?
<p><p>我一直在尝试从 plist 文件中读取数据。这就是它的结构</p>
<pre><code>|term|detail(string)|
</code></pre>
<p>我的属性:</p>
<pre><code>@property (nonatomic, strong) NSArray *terms;
@property (nonatomic, strong) NSArray *termKeys;//this is just a array to keep track
@property (nonatomic, strong) NSString *detail;
</code></pre>
<p>这就是我访问 <code>cellForRowAtIndexPath</code></p> 中详细信息的方式
<pre><code> - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [
initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
NSString *currentTermsName = ];
[ setText:currentTermsName];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
detail = ;
NSLog(@" bombs %@",terms[@"Bomb Threats"]);
return cell;
}
</code></pre>
<p>在 View 中我有</p>
<pre><code>- (void)viewDidLoad
{
;
NSString *myfile = [
pathForResource:@"terms" ofType:@"plist"];
terms = [ initWithContentsOfFile:myfile];
termKeys = ;
}
</code></pre>
<p>它访问值,但它为每个对象存储相同的值假设我在 plist 中有 5 条不同的记录,如果我打印详细信息,它会显示相同的记录 5 次。</p>
<p>一旦设置了详细信息,然后我将其传递给 detialView</p>
<pre><code>- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if(){
TermsDetailViewController *controller = (TermsDetailViewController *)segue.destinationViewController;
controller.detailTerm = detail;
}
}
</code></pre>
<p>最后:</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
;
}
</code></pre>
<p>这是我的字典:<a href="http://pastebin.com/bxAjJzHp" rel="noreferrer noopener nofollow">http://pastebin.com/bxAjJzHp</a> </p>
<p>目标是将详细信息传递给 detailviewcontroller,就像 Master/detail 示例项目一样。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您不能在 <code>cellForRowAtIndexPath:</code> 方法中设置 <code>detail</code> 变量,因为这样值会变成 transient :它取决于用户如何滚动表格,而不是取决于用户点击了什么披露按钮。</p>
<p>移动这条线</p>
<pre><code>detail = ;
</code></pre>
<p>到 <code>didSelectRowAtIndexPath:</code> 在调用 <code>performSegueWithIdentifier:</code> 之前解决问题。现在 <code>detail</code> 设置为响应用户在 <code>prepareForSegue:</code> 调用之前的点击,确保将正确的值与详细信息数据一起传递给 ViewController 。</p></p>
<p style="font-size: 20px;">关于ios - 如何读取 plist 文件然后填充 UItableView?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/15210906/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/15210906/
</a>
</p>
页:
[1]