ManagingContacts/ManagingContacts/TextFieldCell.swift

/*
    Copyright (C) 2017 Apple Inc. All Rights Reserved.
    See LICENSE.txt for this sample’s licensing information
    
    Abstract:
    A custom UITableViewCell that implements a textfield.
*/
 
import UIKit
 
class TextFieldCell: UITableViewCell {
    // MARK: Properties
    
    @IBOutlet weak var textField: UITextField!
}