Class-Only Protocols in Swift

后端 未结 4 1330
攒了一身酷
攒了一身酷 2021-02-03 20:51

I want some of my classes (not all) to conform using \'Class-Only Protocols\' from docs. What I am doing is

protocol RefreshData: class, ClassA, ClassB
{
    fun         


        
4条回答
  •  花落未央
    2021-02-03 21:24

    Swift 4 allows you to combine types, so you can have your protocol and then create, for example, a type alias to combine it with a specific class requirement.

    For (a contrived) example:

    typealias PresentableVC = UIViewController & Presentable
    

    For the presented code:

    The problem is that you're trying to limit to specific classes and Swift can't do that (at the moment anyway). You can only limit to classes and inherit from other protocols. Your syntax is for protocol inheritance but you're trying to use it as a class limitation.

    Note that the purpose of class protocols is:

    Use a class-only protocol when the behavior defined by that protocol’s requirements assumes or requires that a conforming type has reference semantics rather than value semantics.

提交回复
热议问题