I'm using CTCallCenter to register to call events.
CTCallCenter *callCenter = [[CTCallCenter alloc] init];
callCenter.callEventHandler=^(CTCall* call)
{
if (call.callState == CTCallStateDisconnected)
{
//we know that the call has ended.
[self phoneCallEnded];
}
};
XCode says it's leaking... Makes sense.
If I release ' callCenter ' here, the eventHandler is not invoked.
My question is, where and when must i release it? Should I make it a member and release it in ' dealloc() ' ?