ios4 - Implementing Twitter in iPhone using OAuth? -


i trying implement twitter in app using oauth... have code in button click method... click on button app gets killed on following line of code

uiviewcontroller *controller = [sa_oauthtwittercontroller controllertoentercredentialswithtwitterengine:_engine delegate:self]; 

there no message in debug window except cfrelease... possibly doing wrong?

if(!_engine){    _engine = [[sa_oauthtwitterengine alloc] initoauthwithdelegate:self];   _engine.consumerkey    = koauthconsumerkey;   _engine.consumersecret = koauthconsumersecret;   }   if(![_engine isauthorized]){    uiviewcontroller *controller = [sa_oauthtwittercontroller controllertoentercredentialswithtwitterengine:_engine delegate:self];    if (controller){   [self presentmodalviewcontroller: controller animated: yes];   }   }     

this error shows

xcode not locate source file: oamutableurlrequest.m

i use sharekit nonsense. took me 10 minutes tonight range of service working. getsharekit.com


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -