twitter-archive / twitter-kit-ios

Twitter Kit is a native SDK to include Twitter content inside mobile apps.
Apache License 2.0
688 stars 449 forks source link

TWTRComposerResultCancelled #118

Open licl19 opened 5 years ago

licl19 commented 5 years ago

I don't know why callback TWTRComposerResultCancelled always when I share with tweet.

TWTRComposer *composer = [[TWTRComposer alloc] init]; [composer setText:@"tweet share test"]; // [composer setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]]]]; // [composer setURL:[NSURL URLWithString:shareContent]]; [composer showFromViewController:from completion:^(TWTRComposerResult result){ if(result == TWTRComposerResultCancelled) { }else{ } }];

lijithvipin commented 5 years ago

any solution for this issue?