PPRevealSideViewController第三庫(kù)的簡(jiǎn)單例子
創(chuàng)新互聯(lián)建站專(zhuān)注于企業(yè)全網(wǎng)營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、望都網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5響應(yīng)式網(wǎng)站、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為望都等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
代碼下載:
http://pan.baidu.com/share/link?shareid=3833108176&uk=3189484501
這個(gè)第三方庫(kù)是能夠?qū)崿F(xiàn)左右滑動(dòng)視圖控制器效果的第三方庫(kù),第三庫(kù)在代碼例子中就有的
首先,我們需要再創(chuàng)建一個(gè)視圖控制器,讓它直接繼承自UITableViewController
我們不需要額外添加代碼。
AppDelegate.h代碼實(shí)現(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文件實(shí)現(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)建一個(gè)導(dǎo)航 self.nav = [[UINavigationController alloc] initWithRootViewController:self.viewController]; //初始化一個(gè)可以左右劃第三庫(kù)的對(duì)象 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代碼實(shí)現(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]; }
分享名稱(chēng):PPRevealSideViewController第三庫(kù)的簡(jiǎn)單例子
轉(zhuǎn)載注明:http://aaarwkj.com/article36/goodpg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、靜態(tài)網(wǎng)站、做網(wǎng)站、網(wǎng)站設(shè)計(jì)公司、電子商務(wù)、軟件開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)