for swift users
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .default, reuseIdentifier: "TableIdentifer")
let switch = UISwitch()
cell.accessoryView = switch
}