If you have a view controller that implements a delegate, then should you set the delegate to nil when it’s deallocated? I get this message all the time.
I am not sure by saying “setting the delegate to nil”, what does this mean? Can someone give me a simple example to clarify this?
You most likely just have to do “SomeObject.delegate = nil” before deallocating SomeObject’s old delegate. Can you provide any code snippets from where this warning occurs?