Not able to send a Tweet with TwitterKit on iOS 11
问题 I am trying to use the TwitterKit to compose a tweet, via the TWTRComposer class provided. This is the function I call: -(void) tweet:(UIViewController *) root { TWTRComposer *composer = [[TWTRComposer alloc] init]; [composer setText:@"just setting up my Twitter Kit"]; // Called from a UIViewController [composer showFromViewController:root completion:^(TWTRComposerResult result) { if (result == TWTRComposerResultCancelled) { NSLog(@"Tweet composition cancelled"); } else { NSLog(@"Sending