我創建了一個簡單的表格視圖並嵌入到導航控制器中。我已經爲單元格選擇了一種附件類型,並使用另一個視圖控制器的segue來顯示該單元格的細節。但附件沒有顯示。如果我使用此代碼表格視圖單元格的附件不在iOS 9和swift中顯示
cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator
然後附件顯示,但繼續不工作。
這是我的代碼
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
let cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "Cell")
cell.textLabel?.text = "test"
// cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator
return cell
}
請告訴我問題出在哪裏。
請顯示segue的代碼。我也在下面添加了一個響應。 – penatheboss