Skip to content

Instantly share code, notes, and snippets.

weak var delegate: SendDataDelegate? = nil
@IBOutlet weak var txtEnterName: UITextField!
import UIKit
// MARK:- Protocol Created
protocol SendDataDelegate : class {
func passingData(_ text:String)
}