Unable to launch twitter api in my iOS program, error with Fabric -
i tried implement twitter login app, using fabric. while following tutorial, made little change - instead of defining twtrloginbutton
in .m file, defined in .h file first.
so in .h file, set button like:
@property (strong, nonatomic) iboutlet twtrloginbutton *twitterbutton;
and in .m file code is:
_twitterbutton = [twtrloginbutton buttonwithlogincompletion:^(twtrsession *session, nserror *error) { if (session) { nslog(@"signed in %@", [session username]); } else { nslog(@"error: %@", [error localizeddescription]); } }];
and gives me error this:
"[fabric] unable locate application icon"
and ever since can't find way solve this. have tried changing code tutorial said well, did not work either. don't understand why fabric unable locate icon...
any appreciated. thank in advance.
Comments
Post a Comment