in iOS 5.0 i öffnet Twitter Einstellung von meiner App vonöffnen Twitter Einstellung von ACAccountStore (iOS 5.1 TWITTER)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=TWITTER"]];
aber bietet dieses in iOS entfernt 5.1, daher kann ich nicht in der Lage Öffnen Sie die Twitter-Einstellung.
Jetzt bin ich mit
+ (void)makeRequestsWithURL: (NSURL *)url {
// Create an account store object.
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
// Create an account type that ensures Twitter accounts are retrieved.
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[self canTweetStatus];
// Request access from the user to use their Twitter accounts.
[accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
if(granted) {
// Get the list of Twitter accounts.
NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];
// For the sake of brevity, we'll assume there is only one Twitter account present.
// You would ideally ask the user which account they want to tweet from, if there is more than one Twitter account present.
if ([accountsArray count] > 0) {
// Grab the initial Twitter account to tweet from.
ACAccount *twitterAccount = [accountsArray objectAtIndex:0];
// Create a request, which in this example, posts a tweet to the user's timeline.
// This example uses version 1 of the Twitter API.
// This may need to be changed to whichever version is currently appropriate.
TWRequest *postRequest = [[TWRequest alloc] initWithURL:url parameters:nil requestMethod:TWRequestMethodPOST];
// Set the account used to post the tweet.
[postRequest setAccount:twitterAccount];
// Perform the request created above and create a handler block to handle the response.
[postRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
NSString *output = [NSString stringWithFormat:@"HTTP response status: %i", [urlResponse statusCode]];
iOS5Twitter *twitter5 = [[iOS5Twitter alloc] init];
[twitter5 performSelectorOnMainThread:@selector(displayText:) withObject:output waitUntilDone:NO];
[twitter5 release]; }];
}
}
}];
}
für diesen Antrag gestellt, ich bin in der Lage zu überprüfen, ob ich in oder nicht von der
if ([TWTweetComposeViewController canSendTweet])
bin loged aber jetzt i want: Wenn ich nicht angemeldet bin, würde ich eine Warnung wie im Bild gezeigt anzeigen und möchte zur Twitter-Einstellung wechseln. ist es möglich ? oder muss ich manuell auf twitter setzen?
Wie zu vermeiden, erscheint der Tastatur in der obigen Logik – ShivaPrasad
@jeeva ich denke, Tastatur nicht angezeigt wird, oder wenn es dann nur Textview oder Textfield von (UIView * anzeigen in tweetViewController.viewnviews) { } und machen resitFirstResponder . – PJR
Wenn Sie nach etwas suchen, das in iOS 6.0+ funktioniert, ist die Antwort [unten] (http://stackoverflow.com/questions/11325266/open-twitter-setting-from-acaccountstore-ios-5-1-twitter/13293846 # 13293846) hat super funktioniert. –