符合协议的Swift扩展

时间:2014-07-23 01:36:32

标签: ios swift protocols

我在Swift中创建符合协议的扩展程序时遇到了问题。

在Objective-C中,我可以创建一个符合协议的类别:

SomeProtocol.h

@protocol SomeProtocol
...
@end

的UIView +类别名称

#import SomeProtocol.h
@interface UIView (CategoryName) <SomeProtocol>
...
@end

我试图用Swift扩展

来实现相同的目标

SomeProtocol.swift

protocol SomeProtocol {
    ...
}

UIView扩展

import UIKit
extension UIView : SomeProtocol {
...
}

我收到以下编译错误:

  

键入&#39; UIView&#39;不符合协议&#39; SomeProtocol&#39;

2 个答案:

答案 0 :(得分:20)

请仔细检查您的扩展程序是否已实施协议中定义的所有方法。如果没有实现函数a,则会得到您列出的编译器错误。

protocol SomeProtocol {
    func a()
}

extension UIView : SomeProtocol {
    func a() {
        // some code
    }
}

答案 1 :(得分:10)

//**Create a Protocol:**

protocol ExampleProtocol {
    var simpleDescription: String { get }
    func adjust()-> String
}


//**Create a simple Class:** 

class SimpleClass {

}

//**Create an extension:**

extension SimpleClass: ExampleProtocol {

    var simpleDescription: String {

    return "The number \(self)"
    }

    func adjust()-> String {

    return "Extension that conforms to a protocol"

    }


}

var obj = SimpleClass() //Create an instance of a class

println(obj.adjust()) //Access and print the method of extension using class instance(obj)

结果:符合协议的扩展程序

希望它有帮助..!