@H_403_1@Swift 协议代理的使用和OC的使用步骤是一致.
1.声明一个协议方法
2.声明一个SecondViewControllerDelegate对象
4.关联协议SecondViewControllerDelegate
5.代理的关联
效果图
具体使用步骤
@H_403_1@在SecondViewController里面声明一个协议1.声明一个协议方法
/** * 声明一个协议 */
protocol SecondViewControllerDelegate{
// 协议方法
func changeText(str:String)
}
@H_403_1@协议名:SecondViewControllerDelegate 2.声明一个SecondViewControllerDelegate对象
// 声明一个协议的属性
var delegate : SecondViewControllerDelegate?
@H_403_1@3.关联协议方法
func textFieldDidEndEditing(textField: UITextField) {
// 协议传值
self.delegate?.changeText(textField.text!)
}
@H_403_1@在ViewController里面 4.关联协议SecondViewControllerDelegate
5.代理的关联
@IBAction func nextBtnClick(sender: UIButton) {
let sVC = SecondViewController()
sVC.delegate = self // 关联代理
self.navigationController?.pushViewController(sVC,animated: true);
}
@H_403_1@6.实现协议方法
func changeText(str: String) {
self.showLabel.text = str
}
总结
- 代理协议的使用步骤就是这6步,在制作协议的地方和使用协议的地方都是3步,每一步缺一不可.
- 代理的反向传值的使用
- pushViewController方法的使用