passforios/pass/Views/TextFieldTableViewCell.swift

22 lines
435 B
Swift
Raw Normal View History

2017-02-10 22:15:01 +08:00
//
// TextFieldTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 10/2/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
import UIKit
class TextFieldTableViewCell: UITableViewCell, ContentProvider {
@IBOutlet var contentTextField: UITextField!
2018-12-09 16:59:07 -08:00
func getContent() -> String? {
contentTextField.text
2017-02-13 01:15:42 +08:00
}
func setContent(content: String?) {
2017-02-13 01:15:42 +08:00
contentTextField.text = content
}
2017-02-10 22:15:01 +08:00
}