passforios/pass/Views/TextFieldTableViewCell.swift

22 lines
418 B
Swift
Raw Permalink 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
2021-12-31 07:35:17 +01:00
class TextFieldTableViewCell: UITableViewCell {
@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
}