Let's say you have have a viewController with:
@property (strong) object* A
@property (strong) object* B
You then purposely create a retain cycle at somepoint, without timers, such that
self.A.someStrongProperty = self //retain cycle
Question: Suppose the VC containing these properties gets deallocated, could a retain cycle or memory leak persist?