swift - protocol

前端之家收集整理的这篇文章主要介绍了swift - protocol前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Protocol(协议)用于统一方法属性名称,而不实现任何功能。协议能够被类,枚举,结构体实现,满足协议要求的类,枚举,结构体被称为协议的遵循者。

遵循者需要提供协议指定的成员,如属性方法,操作符,下标等。

这里只讲和oc 代理类似的那种

一. 声明一个protocol : NSObjectProtocol

protocol GGTableViewControllerDelegate:NSObjectProtocol {
    //方法
    func closeButtonDidClicked()
    func tableViewDidSelectedAtIndexPath(indexPath:NSIndexPath)
}

二. 声明delegate属性

weak var delegate:GGTableViewControllerDelegate?

三. 在合适的地方让delegate 调用代理方法

func closeView() {
    print("close view")
    if ((delegate?.respondsToSelector("closeButtonDidClicked")) != nil) {
        delegate?.closeButtonDidClicked()
    }
}
func tableView(tableView: UITableView,didSelectRowAtIndexPath indexPath: NSIndexPath) {
        if ((delegate?.respondsToSelector("tableViewDidSelectedAtIndexPath:")) != nil) {
            delegate?.tableViewDidSelectedAtIndexPath(indexPath)
        }
 }

在这里,目前还不知道需不需要像oc一样,在调用之前判断代理是否还存在,是否还响应该方法,也不知道这种格式是否正确,求指点一二

四.遵守代理协议

class MainViewController: UIViewController,GGTableViewControllerDelegate {

    let vc = GGTableViewController()     
    vc.delegate = self
}

五.实现代理方法

//MARK: GGTableViewControllerDelegate
    func closeButtonDidClicked() {
        print("will close")

        let ggView = view.subviews.last
        ggView?.removeFromSuperview()

    }

    func tableViewDidSelectedAtIndexPath(indexPath: NSIndexPath) {
        print(indexPath)
    }


项目源码:https://git.oschina.net/lisForCoding/GGTableViewController.git

原文链接:https://www.f2er.com/swift/324305.html

猜你在找的Swift相关文章