brototyp / BRImageBook

Eine einfache Klasse um Bilder in einer Slideshow anzuzeigen.

Home Page:http://brototyp.de/blog/brimagebook/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BRImageBook

Eine einfache Klasse um Bilder in einer Slideshow anzuzeigen.

NSArray *images = @[@"cats1.jpeg",@"cats2.jpeg",@"cats3.jpeg",@"cats4.jpeg"];

_imageBookView = [[BRImageBookView alloc] initWithFrame:CGRectMake(0,0,100,100) imageCount:images.count andImageBlock:^UIImage *(int index){
    return [UIImage imageNamed:[images objectAtIndex:index]];
}];

_imageBookView.random = YES;
_imageBookView.animationTime = 1.0;
_imageBookView.cornerRadius = 20.0;
_imageBookView.animationType = BRImageBookViewAnimationTypeCurl;

[self.view addSubview:_imageBookView];

animationTime

Die Dauer einer Animation.

displayTime

Wie lange wird ein Bild angezeigt.

animationType

  • BRImageBookViewAnimationTypeCurl Curl Animation

  • BRImageBookViewAnimationTypeShift Shift Animation

About

Eine einfache Klasse um Bilder in einer Slideshow anzuzeigen.

http://brototyp.de/blog/brimagebook/


Languages

Language:Objective-C 100.0%