passforios/pass/Views/TextFieldTableViewCell.swift
2021-12-30 22:35:17 -08:00

21 lines
418 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 {
@IBOutlet var contentTextField: UITextField!
func getContent() -> String? {
contentTextField.text
}
func setContent(content: String?) {
contentTextField.text = content
}
}