I'm developing an iOS app and views create a request for their data, now if the user dismiss the view, it's released and when the FBConnect call:
if ([_delegate respondsToSelector:
@selector(request:didReceiveResponse:)]) {
[_delegate request:self didReceiveResponse:httpResponse];
}
the app is crashed...
Any solution for that case?
Thanks!