I have some code in a UIViewController that isn't being deallocated, which I don't know whether or not is causing the issue. I can't easily comment it out because it's used in a lot of places. Would this code create a strong reference cycle?
class something {
var A = B()
var C {
get {
return self.A.D
}
}
}
Does property C cause a retain cycle?