99偷拍视频精品区一区二,口述久久久久久久久久久久,国产精品夫妇激情啪发布,成人永久免费网站在线观看,国产精品高清免费在线,青青草在线观看视频观看,久久久久久国产一区,天天婷婷久久18禁,日韩动漫av在线播放直播

使用RNSwipeViewController類庫進行視圖切換-創新互聯

如今很多應用已經不再局限于點擊按鈕觸發事件來進行視圖之間切換,為迎合給予用戶更好體驗,體現iOS系統極佳用戶體驗,使用手勢來進行各個視圖之間切換,用戶至于一個大拇指在屏幕中央就可瀏覽到很多信息;

創新互聯是少有的網站建設、成都網站制作、營銷型企業網站、小程序設計、手機APP,開發、制作、設計、賣鏈接、推廣優化一站式服務網絡公司,于2013年創立,堅持透明化,價格低,無套路經營理念。讓網頁驚喜每一位訪客多年來深受用戶好評

關于 RNSwipeViewController: https://github.com/rnystrom/RNSwipeViewController

RNSwipeViewController是別人已經寫好的一個ViewController容器,剩下我們要做的就是把自己的視圖容器放到這個容器中進行管理。

首先學習 RNSwipeViewController里面的Demo

1.創建一個Single View Application工程,next,勾選 Use Storyboards,Use Automatic  Reference Counting

2.將RNSwipeViewController拖入新建到工程,添加QuartzCore.framework

3.新建四個類CenterViewController、LeftViewController、RightViewController、BottomViewController,繼承UIViewController類

4.打開StoryBoard,從庫里拖入四個ViewController視圖控制器到StoryBoard里面,選中一個視圖控制器設置類名和Storyboard ID,其他三個類似

使用RNSwipeViewController類庫進行視圖切換

5.在ViewController.h將加入#import "RNSwipeViewController.h"并將繼承類改為RNSwipeViewController,在ViewDidLoad方法中

- (void)viewDidLoad
{
    [super viewDidLoad];
    CenterViewController *centerView = [self.storyboard instantiateViewControllerWithIdentifier:@"CenterViewController"];
    UINavigationController *centerNav = [[UINavigationController alloc] initWithRootViewController:centerView];
    centerView.title  =@"Center";
    self.centerViewController = centerNav;
    self.leftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"LeftViewController"];
                                                                                                         
    self.rightViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"RightViewController"];
                                                                                                           
    self.bottomViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"BottomViewController"];
                                                                                                            
}

如此我們就完成三個視圖之間手勢交互,首先出現的視圖作為主視圖,其他試圖再是在它上面進行運動,手指向左滑右側視圖出現,向右滑動出現左視圖,向上滑動出現底部視圖出現

使用RNSwipeViewController類庫進行視圖切換.使用RNSwipeViewController類庫進行視圖切換.使用RNSwipeViewController類庫進行視圖切換

平常我們在構建一個帶有XIB視圖控制類的時候,初始化一般這樣

CenterViewController *centerVC = [[CenterViewController alloc] initWithNibName:@"CenterViewController" bundle:nil];

但是在StoryBoard中,視圖的Storyboard ID  成了這是視圖的唯一標示,再給一個視圖所屬類時,設定好該視圖的Storyboard ID,進行初始化時CenterViewController *centerView = [self.storyboard instantiateViewControllerWithIdentifier:@"CenterViewController"];

這個類庫中也提供按鈕點擊進行視圖交互方法,同時也設置視圖顯示寬度的屬性,在類庫實現的里面視圖寬度有默認值

_leftVisibleWidth = 200.f;
_rightVisibleWidth = 200.f;
_bottomVisibleHeight = 300.0f;

再此我們可以在自己類里修改這個屬性,根據自己需求,作圖下設置

ViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
                                                                                                
                                                                                                
    CenterViewController *centerView = [self.storyboard instantiateViewControllerWithIdentifier:@"CenterViewController"];
    UINavigationController *centerNav = [[UINavigationController alloc] initWithRootViewController:centerView];
    centerView.title  =@"Center";
    self.centerViewController = centerNav;
    self.leftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"LeftViewController"];
    self.leftVisibleWidth = 100;
    self.rightViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"RightViewController"];
    self.rightVisibleWidth  = self.view.frame.size.width;
    self.bottomViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"BottomViewController"];
                                                                                                
}

我們再給導航欄上添加兩個按鈕,在CenterViewController類中,包含#import "UIViewController+RNSwipeViewController.h"

- (void)viewDidLoad
{
    [super viewDidLoad];
                                                                                        
    UIButton *leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    leftBtn.frame = CGRectMake(0, 0, 44, 44);
    [leftBtn setImage:[UIImage p_w_picpathNamed:@"left.png"] forState:UIControlStateNormal];
    [leftBtn addTarget:self action:@selector(toggleLeft) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *leftBar = [[UIBarButtonItem alloc] initWithCustomView:leftBtn];
    self.navigationItem.leftBarButtonItem = leftBar
    ;
                                                                                        
                                                                                        
    UIButton *rightBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    rightBtn.frame = CGRectMake(self.view.frame.size.width-44, 0,44 , 44);
    [rightBtn setImage:[UIImage p_w_picpathNamed:@"right.png"] forState:UIControlStateNormal];
    [rightBtn addTarget:self action:@selector(toggleRight) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *rightBar = [[UIBarButtonItem alloc] initWithCustomView:rightBtn];
    self.navigationItem.rightBarButtonItem = rightBar;
    ;
                                                                                         
}

接著連個按鈕事件,為了顯示明顯我們可以設置一下三個視圖背景顏色

-(void)toggleLeft
{
    [self.swipeController showLeft];
}
-(void)toggleRight
{
    [self.swipeController showRight];
}

使用RNSwipeViewController類庫進行視圖切換使用RNSwipeViewController類庫進行視圖切換

RNSwipeViewController有一個協議方法,可以監聽當前視圖顯示百分比(0~100)

RNSwipeViewController have a protocol method, can monitor the current view shows percentage (0 ~ 100)

#import <UIKit/UIKit.h>
#import "RNRevealViewControllerProtocol.h"
@interface LeftViewController : UIViewController<RNRevealViewControllerProtocol>
@end

協議方法,當左側視圖完全顯示時彈出一個alertView

-(void)changedPercentReveal:(NSInteger)percent
{
    if (percent == 100) {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"這是一個測試" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
        [alert show ];
                                                                
                                                               
    }
}

×××地址:https://github.com/XFZLDXF/XFSwipeView.git

另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

網頁名稱:使用RNSwipeViewController類庫進行視圖切換-創新互聯
URL分享:http://www.yijiale78.com/article10/idpdo.html

成都網站建設公司_創新互聯,為您提供網站維護云服務器搜索引擎優化手機網站建設定制網站網站建設

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都seo排名網站優化