FMSKit 0.5.0

FMSKit 0.5.0

测试测试版
Lang语言 Obj-CObjective C
许可 MIT
发布最新版本2014年12月

Frank Michael Sanchez维护。



FMSKit 0.5.0

  • 作者
  • Frank Michael Sanchez

FMSDrawer 使用

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

可复用WebView使用

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];