' DepartmentDataDelegate'无法构造,因为它没有可访问的初始值设定项

时间:2018-04-20 05:41:00

标签: ios swift api delegates protocols

我使用Protocol和Delegates将api数据保存到委托方法中,并在另一个类中保存它。但在第二堂课时,我宣布了这个属性。它显示错误消息。

  

' DepartmentDataDelegate'不能建造,因为它没有   可访问的初始化程序

A类: 添加协议以将api数据保存到委托方法中。

protocol DepartmentDataDelegate {
    func showDepttData(departments: [String : Any])
}

var delegate: DepartmentDataDelegate?

将api数据存储到协议方法

do {
                //create json object from data
                if let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: [Any]] {
                    //print("POST Method :\(json)")


                    DispatchQueue.main.async {

                        for eachDepartment in json["departments"]!
                        {
                            let eachData = eachDepartment as! [String: Any]

                            self.delegate?.showDepttData(departments: eachData)
                        }
                        self.tableView.reloadData()
                    }

                    // handle json...
                }
            } catch let error {
                print(error.localizedDescription)
}

B类: 这个类正在获取部门数据并在此打印。

class ShowEmpVC: UIViewController, DepartmentDataDelegate {

    //Department Data Delegate
    var depttDelegate = DepartmentDataDelegate()

    var depttData = [String : Any]()

    override func viewDidLoad() {
        super.viewDidLoad()

        depttDelegate = self
        print("Departmens  are  :   \(depttData)")
    }
}

2 个答案:

答案 0 :(得分:0)

在您的协议中没有init()功能。所以你不要打电话给DepartmentDataDelegate()。试试这个:

A类:

protocol DepartmentDataDelegate {
    func showDepttData(departments: [String : Any])
}

static var delegate: DepartmentDataDelegate?

B组:

class ShowEmpVC: UIViewController, DepartmentDataDelegate {

    var depttData = [String : Any]()

    override func viewDidLoad() {
        super.viewDidLoad()

        depttDelegate = self
        print("Departmens  are  :   \(depttData)")
    }

   override func showDepttData(departments: [String : Any]){
      // code
  }
}

我不确定是否需要override键。

答案 1 :(得分:0)

协议类

import UIKit

protocol sampleProtocol : class {
    func getValues(valuess:String)
}

class sampleClass {
    /// Shared Instance - So without creating a new Instance i  can make use of its function
    static let shared = sampleClass()
    /// Delegate Object
    var delegate : sampleProtocol?

    /// Sample Func which will send data using protocol
    func sendData(){
        /// Called whnen data is to be Transmitted
        delegate?.getValues(valuess: "output")
    }
}

用法 - 目标类 - 您的案例ShowEmpVC

import UIKit

class sampleVC: UIViewController
{
    override func viewDidLoad() {
        super.viewDidLoad()
        /// Make use of Shared Instance Created so, You need not to Re-allocate a New instance just to make use of Delegate
        sampleClass.shared.delegate = self
    }
}

/// Assign class to Protocol
extension sampleVC : sampleProtocol
{
    /// Protocol stub
    func getValues(valuess: String) {
        /// Get Value
        print(valuess)
    }
}