A declaration cannot be both 'final' and 'dynamic' error in Swift 1.2

后端 未结 7 1350
Happy的楠姐
Happy的楠姐 2021-01-30 07:55

The declaration of value below

import Foundation

class AAA: NSObject {
    func test2() {
        self.dynamicType
    }
}
extension AAA {
    stat         


        
7条回答
  •  失恋的感觉
    2021-01-30 08:31

    I had this error too.

    My issue was just a static var in a swift extension.

    extension NotificationsViewController: UITableViewDataSource , UITableViewDelegate {
    
        static var timeIntervalFormatter = NSDateComponentsFormatter()
    
    }
    

    Moving it to the class implementation resolved the problem for me.

提交回复
热议问题