add placeholder to cell

This commit is contained in:
Bob Sun 2017-02-11 20:49:21 +08:00
parent ae4ad4837e
commit c0fe4711ba
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4

View file

@ -37,6 +37,7 @@ class AddPasswordTableViewController: UITableViewController {
return cell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "textFieldCell", for: indexPath) as! TextFieldTableViewCell
cell.contentTextField.placeholder = tableTitles[indexPath.section]
return cell
}
}