中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

PPRevealSideViewController第三庫的簡單例子

發布時間:2020-05-31 04:42:45 來源:網絡 閱讀:1106 作者:杜甲同學 欄目:移動開發

PPRevealSideViewController第三庫的簡單例子



代碼下載:


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





這個第三方庫是能夠實現左右滑動視圖控制器效果的第三方庫,第三庫在代碼例子中就有的


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

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


AppDelegate.h代碼實現如下:

#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文件實現如下:

我們要在

- (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];
                              
    //創建一個導航
    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代碼實現如下:

#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];
    //設置左劃顯示的視圖控制器
    [self.revealSideViewController preloadViewController:self.tB forSide:PPRevealSideDirectionLeft];
    [super viewWillAppear:animated];
}





向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

靖江市| 图木舒克市| 合作市| 五大连池市| 宜兰县| 金昌市| 新龙县| 寻甸| 揭西县| 麟游县| 莱西市| 卫辉市| 广西| 九龙县| 芷江| 金川县| 光泽县| 宣化县| 汨罗市| 出国| 兰西县| 九台市| 嫩江县| 锡林郭勒盟| 晋宁县| 屏山县| 忻城县| 沂南县| 托克托县| 崇明县| 财经| 汉中市| 蕉岭县| 平遥县| 康定县| 云和县| 阿拉尔市| 英山县| 轮台县| 岳阳市| 甘泉县|