溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PPRevealSideViewController第三庫的簡單例子

發(fā)布時間:2020-05-31 04:42:45 來源:網(wǎng)絡(luò) 閱讀:1105 作者:杜甲同學(xué) 欄目:移動開發(fā)

PPRevealSideViewController第三庫的簡單例子



代碼下載:


http://pan.baidu.com/share/link?shareid=3833108176&uk=3189484501





這個第三方庫是能夠?qū)崿F(xiàn)左右滑動視圖控制器效果的第三方庫,第三庫在代碼例子中就有的


首先,我們需要再創(chuàng)建一個視圖控制器,讓它直接繼承自UITableViewController

我們不需要額外添加代碼。


AppDelegate.h代碼實現(xiàn)如下:

#import <UIKit/UIKit.h>
#import "PPRevealSideViewController.h"
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@property (strong, nonatomic) PPRevealSideViewController* revealSideViewController;
@property (strong, nonatomic) UINavigationController* nav;
@end



.m文件實現(xiàn)如下:

我們要在

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法添加如下代碼:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
    // Override point for customization after application launch.
                              
    self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
                              
    //創(chuàng)建一個導(dǎo)航
    self.nav = [[UINavigationController alloc] initWithRootViewController:self.viewController];
    //初始化一個可以左右劃第三庫的對象
    self.revealSideViewController = [[PPRevealSideViewController alloc] initWithRootViewController:self.nav];
                              
    self.revealSideViewController.panInteractionsWhenClosed = PPRevealSideInteractionContentView|PPRevealSideInteractionNavigationBar;
                              
                              
    self.window.rootViewController = self.revealSideViewController;
//    PP_RELEASE(self.viewController);
//    PP_RELEASE(self.nav);
    [self.window makeKeyAndVisible];
    return YES;
}




ViewController.h代碼實現(xiàn)如下:

#import <UIKit/UIKit.h>
#import "TableViewControllerABC.h"
#import "PPRevealSideViewController.h"
@interface ViewController : UIViewController
@property (strong , nonatomic) TableViewControllerABC* tB;
@end




ViewController.m代碼如下:

-(void)viewWillAppear:(BOOL)animated
{
    self.tB = [[TableViewControllerABC alloc] initWithStyle:UITableViewStylePlain];
    //設(shè)置左劃顯示的視圖控制器
    [self.revealSideViewController preloadViewController:self.tB forSide:PPRevealSideDirectionLeft];
    [super viewWillAppear:animated];
}





向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI