根据swift

时间:2015-05-05 01:54:17

标签: ios uitableview swift

我有两个表(propertyTypeList& propertyDetailList)和一个文本视图(propertyDetailView)的视图

我尝试做的是使用propertyDetailList根据propertyTypeList中的选择填充数组,然后根据propertyDetailList中的选择填充propertyDetailView。

我可以使用我的底部函数和indexPath.row查看当前选定的行,但我无法通过上述函数调用该函数。

这是我的代码:

class NewProjectView: UIViewController {


@IBOutlet weak var propertyTypeList: UITableView!
@IBOutlet weak var propertyDetailList: UITableView!
@IBOutlet weak var propertyDetailView: UITextView!

var testarray = ["test1", "test2"]

func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
{
    if tableView == propertyTypeList {
    return projectSources.count;
    }
    else {
        return testarray.count
    }
}



func tableView(tableView: UITableView!,
    cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
{

    let cell:UITableViewCell = UITableViewCell(style:UITableViewCellStyle.Default, reuseIdentifier:"Cell")


    if tableView == propertyTypeList {
        cell.textLabel?.text = projectSources[indexPath.row]

        if indexPath.row == 0 {
            println("Row 0")
            }
        else
            {
                println("Not Row 0")
            }

        return cell
        }
    else
        {
        cell.textLabel?.text = testarray[indexPath.row]

        return cell
        }

}



func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    tableView.deselectRowAtIndexPath(indexPath, animated: true)


    println(indexPath.row)


}


override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/

}

如何从第二个tableView Func访问indexPath.row?

2 个答案:

答案 0 :(得分:0)

看起来你的问题中有一个拼写错误。你说:

  

我有两个表的视图(propertyTypeList& propertyDetailList)   和文本视图(propertyDetailView)

     

我要做的是将propertyDetailList填充为   数组基于propertyDetailList中的选择,然后有   propertyDetailView根据选择填充   propertyDetailList。

你的意思是说“我要做的是让propertyDetailList根据propertyTypeList中的选择填充一个数组......”这样会更有意义。

所以你基本上有一个主 - 细节设置,其中propertyTypeList是一个主表视图,propertyDetailList是详细表视图。

我假设两个表视图都有自己的数据源,并且委托指向同一个视图控制器。

您需要做的是编写tableView:didSelectRowAtIndexPath:方法来检查tableView参数。当用户在tableView中选择一行时,将调用该方法,但tableView参数将让您确定所选单元格所属的表视图。

所以你的代码看起来像这样:

func tableView(
  tableView: UITableView, 
  didSelectRowAtIndexPath indexPath: NSIndexPath) 
{
  if (tableView == propertyTypeList)
  {
    //Switch the selected item in the detail list
  }
  else
  {
    //do whatever is appropriate for selecting a detail cell.
  }
}

答案 1 :(得分:0)

关于您对@Duncan C的答案@BlueRad的评论,只需在if语句中重新加载第二张表查看数据

propertyDetailList.reloadData()

可以解决问题