Advertisement
Guest User

Untitled

a guest
May 2nd, 2015
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import UIKit
  2.  
  3. public class TableViewCell: UITableViewCell {
  4.  
  5. @IBOutlet weak var textField: UITextField!
  6.  
  7. public func configure(placeholder: String) {
  8. textField.placeholder = placeholder
  9. textField.accessibilityLabel = placeholder
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement