Skip to content

Instantly share code, notes, and snippets.

@freshout-dev
Created May 22, 2014 18:18
Show Gist options
  • Save freshout-dev/7f8cf33d368c959200fe to your computer and use it in GitHub Desktop.
Save freshout-dev/7f8cf33d368c959200fe to your computer and use it in GitHub Desktop.
SystemPreferencesApplication *systemPreferences = [SBApplication applicationWithBundleIdentifier:@"com.apple.systempreferences"];
SystemPreferencesPane *pane = (SystemPreferencesPane *) [[systemPreferences panes] objectWithID:@"com.apple.preferences.internetaccounts"];
SystemPreferencesAnchor *anchor = (SystemPreferencesAnchor *) [[pane anchors] objectWithName:@"com.apple.twitter.iaplugin"];
[systemPreferences activate];
systemPreferences.currentPane = pane;
[anchor reveal]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment