You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2018. It is now read-only.
can enhance the support for weak?
Weak Object
as if
class Weak<T: AnyObject> {
weak var value: T?
init (_ value: T) {
self.value = value
}
}
Weak Array
http://stackoverflow.com/questions/24127587/how-do-i-declare-an-array-of-weak-references-in-swift
The text was updated successfully, but these errors were encountered: