I’ve got my code here for my array:
for (int i = 0; i < imgCount; i++) {
// Load image from the bundle
NSString * fileName = [NSString stringWithFormat: @"Image-%d", i];
NSString * filePath = [[NSBundle mainBundle] pathForResource: fileName ofType: @"jpeg"];
UIImage * img = [UIImage imageWithContentsOfFile: filePath];
Is it possible to make my array into a cylinder type or calayer with transition?
I have tried studying this: iCarousel
and this also, it has a layer transition example : CA360
Hope this could help to anyone.