JASidePanelsDemo(側滑),jasidepanelsdemo
一個很好的側滑的Demo
:
首頁:
點擊左上方的表徵圖的時候的:
在首頁向左拖動的時候的:
項目部分:
centerViewController.m
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"center"; self.view.backgroundColor=[UIColor redColor];}
rightViewController.m
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"right"; self.view.backgroundColor=[UIColor orangeColor];}
leftViewController.m
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"left"; self.view.backgroundColor=[UIColor greenColor];}
AppDelegate.h
#import <UIKit/UIKit.h>@class JASidePanelController;@interface AppDelegate : UIResponder <UIApplicationDelegate>@property (strong, nonatomic) UIWindow *window;@property (strong, nonatomic) JASidePanelController *viewController;@end
AppDelegate.m
#import "AppDelegate.h"#import "JASidePanelController.h"#import "centerViewController.h"#import "leftViewController.h"#import "rightViewController.h"@implementation AppDelegate@synthesize viewController;- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // Override point for customization after application launch. viewController = [[JASidePanelController alloc] init]; viewController.shouldDelegateAutorotateToVisiblePanel = NO; viewController.leftPanel = [[leftViewController alloc] init]; viewController.centerPanel = [[UINavigationController alloc] initWithRootViewController:[[centerViewController alloc] init]]; viewController.rightPanel = [[rightViewController alloc] init]; self.window.rootViewController = self.viewController; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKeyAndVisible]; return YES;}