I am passing two string using delegate to the parent controller while I pop to the parent controller.
if (![clientIdd length] == 0)
{
[self.clientIdDelegate passClientId:clientIdd andCouncelorId:councelorId];
[self.navigationController popViewControllerAnimated:YES];
}
I enabled Zombies and am getting an error like this:
[CFString respondsToSelector:]: message sent to deallocated instance 0x7a77f8e0.
Can anyone help?