你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> Swift_協議

Swift_協議

編輯:IOS技巧綜合
[摘要]本文是對Swift_協議的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

Swift_協議


點擊查看源碼

//協議
@objc protocol SomeProtocol:class {
    
    //class代表只用類才能實現這個協議
    func test()
    
    //@objc:OC特性 代表可以使用optional特性 optional可選的方法
    @objc optional func testOptional()
    
}

protocol AnotherProtocol: SomeProtocol {
    
    //協議可繼承
    
}

//協議擴展
extension SomeProtocol {
    
    func testExtension() {
        print(#function)
    }
    
}

class SomeClass:NSObject, SomeProtocol {
    
    func test() {
        print(#function)
    }
    
}

/*
 
 test()
 testExtension()
 
 */
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved