passforios/pass/Views/TextFieldTableViewCell.swift

23 lines
448 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 {
2017-02-10 22:15:01 +08:00
@IBOutlet weak var contentTextField: UITextField!
2018-12-09 16:59:07 -08:00
func getContent() -> String? {
2017-02-13 01:15:42 +08:00
return contentTextField.text
}
func setContent(content: String?) {
2017-02-13 01:15:42 +08:00
contentTextField.text = content
}
2017-02-10 22:15:01 +08:00
}