passforios/pass/Views/TextFieldTableViewCell.swift
2019-06-14 18:22:43 +02:00

22 lines
448 B
Swift

//
// 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 weak var contentTextField: UITextField!
func getContent() -> String? {
return contentTextField.text
}
func setContent(content: String?) {
contentTextField.text = content
}
}