Hello,
Application crashed when I'm trying to compile for ios5.
The problem was in method "data_reply = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];" in FbGraph.m file.
Solution:
Before calling this method declare the following variables as nill
NSURLResponse *response = nil;
NSError *err =nil;
Thanks for api,
Tigran Martirosyan tmartiro@gmail.com
Hello,
Application crashed when I'm trying to compile for ios5.
The problem was in method "data_reply = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];" in FbGraph.m file.
Solution:
Before calling this method declare the following variables as nill
NSURLResponse *response = nil;
NSError *err =nil;
Thanks for api,
Tigran Martirosyan tmartiro@gmail.com