Skip to content

Instantly share code, notes, and snippets.

@poiuytrez
Created June 21, 2013 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poiuytrez/5831043 to your computer and use it in GitHub Desktop.
Save poiuytrez/5831043 to your computer and use it in GitHub Desktop.
// Load the framework bundle.
+ (NSBundle *)frameworkBundle {
static NSBundle* frameworkBundle = nil;
static dispatch_once_t predicate;
dispatch_once(&predicate, ^{
NSString* mainBundlePath = [[NSBundle mainBundle] resourcePath];
NSString* frameworkBundlePath = [mainBundlePath stringByAppendingPathComponent:@"MyLib.bundle"];
frameworkBundle = [NSBundle bundleWithPath:frameworkBundlePath];
});
return frameworkBundle;
}
- (IBAction)launchLibBtn:(id)sender {
UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"MyLibStoryboard" bundle:[[self class] frameworkBundle]];
UIViewController *myLibViewController = [storyBoard instantiateInitialViewController];
myLibViewController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:myLibViewController animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment