UIView subclass to easily add a cool animated photo carrusel to your iOS app
Easy to use UIView subclass to quickly add a cool animated carrusel of pictures to your app.
$ git clone git@github.com:JaviSoto/JSAnimatedImagesView.git
JSAnimatedImagesView.(h/m)
onto your project.JSAnimatedImagesView.h
into the controller where you want to use it.JSAnimatedImagesView
instance either via code, or in interface builder (by creating a UIView and changing its class to JSAnimatedImagesView
).viewDidLoad
method):self.animatedImagesView.dataSource = self;
@interface MyViewController () <JSAnimatedImagesViewDataSource> // Conform to the protocol
@end
@implementation MyViewController
- (NSUInteger)animatedImagesNumberOfImages:(JSAnimatedImagesView *)animatedImagesView
{
return self.myImageNames.count;
}
- (UIImage *)animatedImagesView:(JSAnimatedImagesView *)animatedImagesView imageAtIndex:(NSUInteger)index
{
return [UIImage imageNamed:[self.myImageNames objectAtIndex:index]];
}
@end
@property (nonatomic, assign) NSTimeInterval timePerImage;
Specifies the time each image is viewed until the next image is faded in.
@property (nonatomic, assign) NSTimeInterval transitionDuration;
Specifies the duration of the transition (fade-out/fade-in) animation.
JSAnimatedImagesView
is compatible with iOS5.0+JSAnimatedImagesView
requires ARC.Copyright 2012 Javier Soto (ios@javisoto.es)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Attribution is not required but appreciated.