MMDrawerController - 如何掌握详细信息SideBar

时间:2013-10-13 11:39:50

标签: ios tableview sidebar master-detail

如何将MMDrawerController用于我的Master-Detail应用程序?

我希望DetailViewControllercenterViewControllerMasterViewControllerleftDrawerViewController


实际上这是我的代码:

AppDelegate.m

#import "AppDelegate.h"
#import "MMDrawerController.h"
#import "MMDrawerVisualState.h"
#import "MasterViewController.h"
#import "DetailViewController.h"

@interface AppDelegate ()
@property (nonatomic,strong) MMDrawerController * drawerController
@end

@implementation AppDelegate

-(BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:              (NSDictionary *)launchOptions{
     UIViewController * leftDrawer = [[MasterViewController alloc] init];
     UIViewController * center = [[DetailViewController alloc] init];


     UINavigationController * navigationController = [[UINavigationController alloc] initWithRootViewController:center];
     [navigationController setRestorationIdentifier:@"MMExampleCenterNavigationControllerRestorationKey"];

     self.drawerController = [[MMDrawerController alloc]
                         initWithCenterViewController:center
                         leftDrawerViewController:leftDrawer];
     [self.drawerController setRestorationIdentifier:@"MMDrawer"];
     [self.drawerController setMaximumRightDrawerWidth:200.0];
     [self.drawerController setOpenDrawerGestureModeMask:MMOpenDrawerGestureModeAll];
     [self.drawerController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModeAll];

     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
     [self.window setRootViewController:self.drawerController];
     // Override point for customization after application launch.
     self.window.backgroundColor = [UIColor whiteColor];
     [self.window makeKeyAndVisible];

     return YES;
}

centerViewController完全保持黑色,leftDrawerViewController只包含一个tableView。

1 个答案:

答案 0 :(得分:0)

当您创建MMDrawerController尝试将initWithCenterViewController参数设置为navigationController而不是center时。