Skip to content

Instantly share code, notes, and snippets.

@imosquera
Forked from nwg/controller.h
Created January 23, 2012 21:25
Show Gist options
  • Save imosquera/1665613 to your computer and use it in GitHub Desktop.
Save imosquera/1665613 to your computer and use it in GitHub Desktop.
//import the socialize header
#import <Socialize/Socialize.h>
@interface YourCustomViewController : UIViewController
@property (nonatomic, retain) SocializeActionBar *actionBar;
@end
- (void)viewDidLoad
{
[super viewDidLoad];
self.actionBar = [SocializeActionBar actionBarWithUrl:@"http://www.example.com/object/1234" presentModalInController:self];
[self.view addSubview:self.actionBar.view];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment