具有许多UIView的Singleton服务

时间:2018-11-29 20:37:50

标签: ios swift delegates singleton nsnotificationcenter

学习迅速,只遇到一个问题。我正在尝试将委托与singleton服务一起使用。
使用委托我想更新多个视图,但是由于实现singleton,委托保留了最后一个UIView。
因此,例如,我有3个ID为1、2、3的UIView。当我在init正文self.myservice.delegate = self中进行操作时,将尝试使用特定的委托方法ex。 myServiceDidUpdate,然后在此委托方法中访问self.viewId始终返回last id
我猜这是由于singleton服务的实现而引起的,想向您寻求帮助。

注意 :我需要单例实现以将特定变量保留在服务中

问题 :是否可以保留我的服务的3个实例,并在我需要的服务中保留变量?或处理此问题的最佳方法是什么?

代码

class SimpleView: UIView, AudioServiceDelegate {
    private var audioService = AudioService.shared
    var viewId: String?
    override init(frame: CGRect) {
        super.init(frame: frame)
        self.viewId = NSUUID().uuidString
        self.audioService.delegate = self
    }

    func myServiceDidUpdate(identifier: String?) { <-- identifier coming from service i need to keep it across multiple views
        print("SELF", self.viewId) <-- Keeps always last initialized ID
    }
}

我的服务

class AudioService {
    static let shared = AudioService()
    var delegate: AudioServiceDelegate?
    var identifier: String?

    ...

    @objc func didUpdate(_ notification: Notification) {
        self.delegate?.myServiceDidUpdate(self.identifier)
    }
}

1 个答案:

答案 0 :(得分:3)

您可以保留uid数组,但多观察者的最佳实践是

// add observer wherever you want to register for new data
notificationCenter.addObserver(self,
                           selector: #selector(self.calledMeth),
                           name: .didReceiveData,
                           object: nil)

//

// post when you want to publish data
NotificationCenter.default.postNotification(name: .didReceiveData, object: nil)

extension Notification.Name {
  static let didReceiveData = Notification.Name("didReceiveData")
  static let didCompleteTask = Notification.Name("didCompleteTask")
}
  

Delegate用于1-1观察,而NotificationCenter用于1-m