访问嵌套字典中的单个元素

时间:2016-06-29 17:45:48

标签: c# ios dictionary xamarin

我有一个iOS应用程序,我使用嵌套字典向表视图提供数据。词典的结构是:

Dictionary<string1, Dictionary<string2, string3>> dict;
(I have named the strings here for clarification purposes)

我目前无法访问此嵌套字典中的单个元素。我希望string1为标题标题,string2为单元格文本标签,string3为单元格明细文字标签。这是我目前使用表数据源的方法:

public class SupervisionDetailSource:UITableViewSource
{
    Dictionary<string, Dictionary<string, string>> dict;
    string Identifier = "cell";

    public SupervisionDetailSource(Dictionary<string, Dictionary<string, string>> dict)
    {
        this.dict = dict;
    }

    public override string TitleForHeader(UITableView tableView, nint section)
    {
        return dict.Keys.ElementAt((int)section);
    }

    public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
    {
        UITableViewCell cell = tableView.DequeueReusableCell(Identifier);
        if (cell == null)
            cell = new UITableViewCell(UITableViewCellStyle.Subtitle, Identifier);

        //this is not right
        cell.TextLabel.Text = dict[supvList.Keys.ElementAt(indexPath.Section)][dict[dict.Keys.ElementAt(indexPath.Row)]]; //string2
        cell.DetailTextLabel.Text = string3 ...?

        return cell;
    }

    public override nint RowsInSection(UITableView tableview, nint section)
    {
        string key = dict.Keys.ElementAt((int)section);
        return dict[key].Count;

    }

    public override nint NumberOfSections(UITableView tableView)
    {
        return dict.Keys.Count;
    }
}

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

我在访问嵌套元素时遇到了困难,但我最终还是让它工作了。我只是误解了我是如何处理这个问题的(更不用说它会变得有点毛茸茸,你去的嵌套越多)。

我的解决方案:

cell.TextLabel.Text = dict[dict.Keys.ElementAt(indexPath.Section)].Keys.ElementAt(indexPath.Row); //string2
cell.DetailTextLabel.Text = dict[dict.Keys.ElementAt(indexPath.Section)][dict[dict.Keys.ElementAt(indexPath.Section)].Keys.ElementAt(indexPath.Row)]; //string3