FMSKit 0.5.0

FMSKit 0.5.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Frank Michael Sanchez.



FMSKit 0.5.0

  • By
  • Frank Michael Sanchez

FMSDrawer Usage

// AppDelegate.m
_drawer = [FMSDrawer sharedInstance];
[_drawer setDataSource:self];
[_drawer setDelegate:self];
[_drawer setParentView:(UINavigationController *)_window.rootViewController];

Reusable WebView Usage

ReuseWebView *webView = [[ReuseWebView alloc] 
    initWithURL:[NSURL URLWithString:@"http://github.com/blog"]];
webView.webTitle = @"GitHub Blog";
// Present webView within a navigation controller.
[self presentViewController:[[UINavigationController alloc] 
    initWithRootViewController:webView] animated:YES completion:nil];