MemoryLeak
mazzharr opened this issue · 0 comments
mazzharr commented
On which platform does the issue happen?
E.g. iOS15
Are you using Cocoapods?
Yes, Updated version
Which version of Xcode are you using?
Xcode 14
What did you do?
I am getting memory leak in WSTagsFields init
layerBoundsObserver = self.observe(.layer.bounds, options: [.old, .new]) { [weak self] sender, change in
guard change.oldValue?.size.width != change.newValue?.size.width else {
return
}
self?.repositionViews()
}