zoukankan      html  css  js  c++  java
  • 【代码笔记】iOS-JASidePanelsDemo(侧滑)

    一,效果图。

    二,工程图。

    三,代码。

    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;
    }
    复制代码
  • 相关阅读:
    自编游戏
    宣言
    Leetcode: 12. Integer to Roman
    Leetcode: 11. Container With Most Water
    Leetcode: 10. Regular Expression Matching
    网络编程:listen函数
    网络编程:connect函数
    Leetcode: 9. Palindrome Number
    Leetcode: 8. String to Integer (atoi)
    Leetcode: 7. Reverse Integer
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/6871711.html
Copyright © 2011-2022 走看看