you can try this
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
or
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var CellIdentifier: String = "Cell"
var cell: UITableViewCell = tableView.dequeueReusableCellWithIdentifier(CellIdentifier)
if cell == nil {
cell = UITableViewCell(frame: CGRectZero, reuseIdentifier: CellIdentifier)
}
cell.accessoryType = .DetailDisclosureButton
return cell
}
or you can do it using storyboard
select your tableview cell from Document outline and go to attribute inspector and select disclourse indicator for your cell as shown in the picture
