fixed memory leak

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-08-15 09:03:35 -05:00
parent 1b4d40f67e
commit 92ccbbeceb

View File

@ -11,13 +11,13 @@ import Combine
import VDS
struct User {
var firstName: String
var lastName: String
var firstName: String
var lastName: String
init(firstName: String, lastName: String) {
self.firstName = firstName
self.lastName = lastName
}
init(firstName: String, lastName: String) {
self.firstName = firstName
self.lastName = lastName
}
}
public protocol Bindable {
@ -34,6 +34,10 @@ extension Bindable {
}
class TextFieldBindingCell: UIView, Bindable {
deinit {
print("\(Self.self) deinit")
}
//bindable
var model: User
var subject: CurrentValueSubject<User, Never>?
@ -77,19 +81,21 @@ class TextFieldBindingCell: UIView, Bindable {
//add the logic
let firstNameSubject = CurrentValueSubject<String, Never>(model.firstName)
firstNameTextField.createBinding(with: firstNameSubject, storeIn: &subscriptions)
firstNameSubject.assign(to: \.model.firstName, on: self).store(in: &subscriptions)
firstNameSubject.sink {[weak self] value in
self?.send()
}.store(in: &subscriptions)
firstNameSubject
.sink {[weak self] value in
guard let self = self else { return }
self.model.firstName = value
self.send()
}.store(in: &subscriptions)
let lastNameSubject = CurrentValueSubject<String, Never>(model.lastName)
lastNameTextField.createBinding(with: lastNameSubject, storeIn: &subscriptions)
lastNameSubject.assign(to: \.model.lastName, on: self).store(in: &subscriptions)
lastNameSubject.sink {[weak self] value in
guard let self = self else { return }
self.send()
}.store(in: &subscriptions)
lastNameSubject
.sink {[weak self] value in
guard let self = self else { return }
self.model.lastName = value
self.send()
}.store(in: &subscriptions)
}
}
@ -111,7 +117,11 @@ class TextFieldBindingCell: UIView, Bindable {
view.backgroundColor = .white
let subject = CurrentValueSubject<User, Never>(user)
subject.assign(to: \.user, on: self).store(in: &subscriptions)
subject
.sink{ [weak self] updatedModel in
self?.user = updatedModel
}
.store(in: &subscriptions)
let nameTextField = TextFieldBindingCell(model: user)
nameTextField.createBinding(with: subject, storeIn: &subscriptions)
@ -151,7 +161,7 @@ extension UITextField {
}
public func createBinding(with subject: CurrentValueSubject<String, Never>,
storeIn subscriptions: inout Set<AnyCancellable>) {
storeIn subscriptions: inout Set<AnyCancellable>) {
subject.sink { [weak self] (value) in
if value != self?.text {