学习迅速,只遇到一个问题。我正在尝试将委托与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)
}
}
答案 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