Skip to content

Instantly share code, notes, and snippets.

@sessionm-docs
Forked from ndurell/MyViewController.m
Created April 18, 2014 14:22
Show Gist options
  • Save sessionm-docs/11046715 to your computer and use it in GitHub Desktop.
Save sessionm-docs/11046715 to your computer and use it in GitHub Desktop.
#import "SMPortalButton.h"
@implementation MyViewController
- (void)viewDidLoad
{
[super viewDidLoad];
SMPortalButton *portalButton=[SMPortalButton buttonWithType:UIButtonTypeSystem];
[portalButton.button setTitle:@"Portal Button" forState:UIControlStateNormal];
portalButton.frame = CGRectMake(40, 40, 100, 30);
[self.view addSubview:portalButton];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment