2

私はここで初めてで、いくつかの助けを借りることができます.iPad用のiosアプリを作成しており、カスタムおよび/またはストックトランジションを使用してページビューでページのトランジションをアニメーション化できるようにしたいと考えています.

フルスクリーンの写真を含むさまざまなページ (PageView) をアニメーション化する正しい方法は何ですか? リンゴの写真アプリに似ています。基本的なスライドショーをセットアップして、それらを切り替えられるようにしたいと考えています。

すべてのヘルプに感謝します。

ありがとうございました

追記:反応が早かったですね。カスタムアニメーションも可能ですか?

4

1 に答える 1

4

このように作成できます:-

- (void)viewDidLoad {
    [super viewDidLoad];
    UIScrollView *scr=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
    scr.tag = 1;
    scr.autoresizingMask=UIViewAutoresizingNone;
    [self.view addSubview:scr];
    [self setupScrollView:scr];
    UIPageControl *pgCtr = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 264, 480, 36)];
    [pgCtr setTag:12];
    pgCtr.numberOfPages=10;
    pgCtr.autoresizingMask=UIViewAutoresizingNone;
    [self.view addSubview:pgCtr];
}

- (void)setupScrollView:(UIScrollView*)scrMain {
    // we have 10 images here.
    // we will add all images into a scrollView & set the appropriate size.

    for (int i=1; i<=10; i++) {
        // create image
        UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"sti%02i.jpeg",i]];
        // create imageView
        UIImageView *imgV = [[UIImageView alloc] initWithFrame:CGRectMake((i-1)*scrMain.frame.size.width, 0, scrMain.frame.size.width, scrMain.frame.size.height)];
        // set scale to fill
        imgV.contentMode=UIViewContentModeScaleToFill;
        // set image
        [imgV setImage:image];
        // apply tag to access in future
        imgV.tag=i+1;
        // add to scrollView
        [scrMain addSubview:imgV];
    }
    // set the content size to 10 image width
    [scrMain setContentSize:CGSizeMake(scrMain.frame.size.width*10, scrMain.frame.size.height)];
    // enable timer after each 2 seconds for scrolling.
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(scrollingTimer) userInfo:nil repeats:YES];
}

- (void)scrollingTimer {
    // access the scroll view with the tag
    UIScrollView *scrMain = (UIScrollView*) [self.view viewWithTag:1];
    // same way, access pagecontroll access
    UIPageControl *pgCtr = (UIPageControl*) [self.view viewWithTag:12];
    // get the current offset ( which page is being displayed )
    CGFloat contentOffset = scrMain.contentOffset.x;
    // calculate next page to display
    int nextPage = (int)(contentOffset/scrMain.frame.size.width) + 1 ;
    // if page is not 10, display it
    if( nextPage!=10 )  {
        [scrMain scrollRectToVisible:CGRectMake(nextPage*scrMain.frame.size.width, 0, scrMain.frame.size.width, scrMain.frame.size.height) animated:YES];
        pgCtr.currentPage=nextPage;
    // else start sliding form 1 :)
    } else {
        [scrMain scrollRectToVisible:CGRectMake(0, 0, scrMain.frame.size.width, scrMain.frame.size.height) animated:YES];
        pgCtr.currentPage=0;
    }
}

あなたが使用することができます: -

SDウェブ画像

AFネットワーキング

NSCacheとNSCache の使用

イメージ キャッシュと非同期ロード イメージの場合

アップデート:-

ここでは、フォト ギャラリーのスライド ショーのような処理を行うライブラリをいくつか示します。これを確認し、必要に応じて実装方法を読んでプロジェクトに使用します。

MWPhotoBrowser for iOS

EGOPhotoViewer for iOS

CXPhotoBrowser for iOS

iOS用Fギャラリー

iOS用ニンバス

iOS 用 PTImageAlbumViewController

于 2013-09-14T04:55:50.637 に答える