Questions tagged [icarousel]

iCarousel is a class designed to simplify the implementation of various types of carousel (paged, scrolling views) on iPhone, iPad and Mac OS. iCarousel implements a number of common effects such as cylindrical, flat and "CoverFlow" style carousels, as well as providing hooks to implement your own bespoke effects.

Unlike many other "CoverFlow" libraries, iCarousel can work with any kind of view, not just images, so it is ideal for presenting paged data in a fluid and impressive way in your app. It also makes it extremely easy to swap between different carousel effects with minimal code changes. Supported OS & SDK Versions

Supported build target - iOS 5.1 / Mac OS 10.7 (Xcode 4.4.1, Apple LLVM compiler 4.0)
Earliest supported deployment target - iOS 4.3 / Mac OS 10.7
Earliest compatible deployment target - iOS 3.2 / Mac OS 10.6

Here's the full description & sample of iCarousel

343 questions
2
votes
1 answer

iCarousel in swift version 1.2 error (candidate is not Objc but protocol requires it)

I get the following error in swift 1.2 : 'RootViewController' does not conform to protocol 'iCarouselDataSource' In the below class, when I tryed to implement the third party library iCarousel: class RootViewController:…
Trainee Programmer
  • 171
  • 1
  • 3
  • 18
2
votes
0 answers

How to set different page sizes in Android viewPager?

I am trying to implement android vertical viewpager with multiple pages. Problem I am facing is I am unable to get the position of the page before they are visible. Is there a way to transform page before it is visible/selected ? I tried OnResume,…
Abhilash
  • 121
  • 1
  • 7
2
votes
0 answers

UICollectionView issue (like carousel)

I need UICollectionView with 3 visible elements (the element in the middle is bigger). Like this I'm trying to use https://github.com/nicklockwood/iCarousel control, but there in Linear type all items has the same size and in Rotary type I can see…
Roman
  • 366
  • 5
  • 19
2
votes
1 answer

iCarousel Linear Infinite Effect?

I would to ask how to create an iCarousel with linear infinite effect? What I mean is, it is the combination of linear and rotary type. For example, numbers 1-10 is being displayed in a linear manner, then next to 10 is 1. Is this possible? Thanks
2
votes
3 answers

How to fade all items before currentItem with iCarousel?

I'm using iCarousel plugin with custom transformations and I try to make a specific fade effect. I want all items before current item faded but current item and all after not faded. Is there a way to do this with fade options ? I tried but didn't…
NicossB
  • 408
  • 2
  • 13
2
votes
1 answer

iCarousel with auto layout

I´m using the iCarousel project in my universal app. I create the main interface in a xib file. The SBFGalleryView´s size will adjust depending if the app is running on iPad or iPhone. Due that, i add constrains to the iCarousel´s view so it…
DaSilva
  • 1,358
  • 1
  • 19
  • 42
2
votes
0 answers

iCarousel scaling images when number of images is greater than iCarouselOptionVisibleItems

I'm using iCarousel to display images clicked by the user and are reloaded dynamically into the carousel. The whole setup works perfectly with default values for iCarouselOptionVisibleItems but images start to scale up when the total number of…
firecast
  • 988
  • 2
  • 10
  • 20
2
votes
1 answer

Loading MPMovieControl for ICarousel Not Working Correctly

I am trying to achieve a iCarousel of Video URLS to allow users to see others posts. Now i have to say i love iCarousel and this has been my only issue with it. I have the right number of carousel objects showing up and the play button is on all of…
Keeano
  • 309
  • 8
  • 33
2
votes
1 answer

iCarousel - viewForItemAtIndex load all indexs at launch

I'm using iCarousel to display information. Each index (7 total) has a unique image with a label over it. Each is set with an if statement if (index == 0){...} etc. However when I load the page (and the carousel) only the first three images load…
Marcus
  • 9,032
  • 11
  • 45
  • 84
2
votes
1 answer

iCarousel - numberOfItemsInCarousel: unrecognized selector sent to instance

I'm trying to implement an iCarousel within a detailedView using a storyboard. LocationDetailViewController.h @interface LocationDetailViewController : UIViewController @property (nonatomic, strong)…
Marcus
  • 9,032
  • 11
  • 45
  • 84
2
votes
0 answers

How to make the Center item size more than the other items in iCarousel using linear type

I am using iCarousel with _wrap = YES; _carousel.type = iCarouselTypeLinear; I want the Centre view to be big in size than the other items while scrolling. Do any one know How to achieve this? I want the views to look some thing like this using…
2
votes
1 answer

Adding custom gesture to iCarousel items

Hi I've been working with Xcode for a while and used UIGestureRecognizers many times now. At this moment i'm developing an iPad app that needs a carousel in it, so what's better then using iCarousel as i've already encountered it and I think it's…
rentziass
  • 23
  • 4
2
votes
1 answer

icarousel viewForItemAtIndex is not getting called?

I am using NickLockwood's iCarousel. I am not getting why viewForItemAtIndex is not getting called.(Setting the breakpoint and its not getting hit.)Everything was properly done. datasource and delegate was set to self. iCarousel is alloc in…
Saheb Singh
  • 555
  • 4
  • 18
2
votes
1 answer

Need to create an NSIndexPath for iCarousel to pass info to additional view controllers

I'm implementing an iCarousel that should pass information based on selection made to two additional view controllers. To pass the information I understand that I need to create an NSIndexPath in the prepareForSegue method in the view controller…
Melissa
  • 39
  • 3
2
votes
1 answer

ScrollDirection in iCarousel?

I Am using iCarousel framework. https://github.com/nicklockwood/iCarousel There I want to find out the swipe direction of a view, because i am having next and previous actions, need to give for right and left scrolling.
Smith
  • 379
  • 6
  • 18