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
0 answers

Customize iCarousel ItemForView by setting its frame?

Usually items of iCarousel are displayed downside tilted. I want the change with upside tilted. I got the code at github and the iCarousel with options was nearest to my requirement.But it was for in same Y level Where I need to tilt it upwards.I…
Heena
  • 2,348
  • 3
  • 32
  • 58
2
votes
4 answers

iCarousel not scrolling smoothly

I'm using iCarousel to scroll labels. Everything works fine on Simulator, but on iPad/iPhone scrolling is not smoothly and quick Here is code. CitiesListView.h #import #import "iCarousel.h" @interface CitiesListView : UIView…
Mariam
  • 103
  • 2
  • 10
2
votes
1 answer

EXC_BAD_ACCESS (code=2 or code 1) when call button action

I am using the iCarousel Library and am having some problems. In the Controls Demo Example Project, a XIB file is used and the view is setup like: - (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView…
FxckDead
  • 408
  • 6
  • 16
2
votes
3 answers

iCarousel performance issue on iPad

I'm using Nick Lockwood's iCarousel for an iPad app. Right now it's just a carousel of 15 full screen images. I setup a single view project, add the iCarousel view in storyboard, add it's view controller as a data source and put this code for the…
Odrakir
  • 4,254
  • 1
  • 20
  • 52
2
votes
1 answer

How can we change the fade color in iCarousel?

Suppose, I want to apply blue color to fade-in and fade-out image, how can i achieve this?
user1667968
  • 1,489
  • 3
  • 12
  • 16
2
votes
5 answers

Paging in iCarousel

I need to have the paging implemented in iCarousel. I have integrated iCarousel with iCarouselTypeLinear after that I have written following code: UIView *bandImageView = [[UIView alloc] initWithFrame:CGRectMake(350, 300, 100,…
Zeeshan Jan
  • 307
  • 4
  • 8
2
votes
1 answer

iCarousel select first index while to loading view

In my project I have a iCarousel in one view.Everything working fine for me. But my problem is, I want to keep the first index object at the center of the view when that view gets loaded.Am displaying totally three images in the carousel.Now the…
NSUserDefault
  • 1,794
  • 1
  • 17
  • 38
2
votes
2 answers

How to remove duplicated items in iCarousel

https://github.com/nicklockwood/iCarousel/issues/278 I am going to use the iCarousel to show the images linearly. These images will be gotten dynamically. Assume that there are 2 images. But when I update iCarousel, there are also 2 images in…
William Han
  • 189
  • 1
  • 2
  • 7
2
votes
1 answer

How to center iCarousel view

I have 6 button that i want to animate using iCarousel, the code like this - (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view { UIButton *button = (UIButton *)view; if (button == nil) { …
Dave Harry
  • 21
  • 7
2
votes
1 answer

UIScrollVIew View

I'm using iCarousel as a slot machine, for those who doesn't know iCarousel it is a UIScrollview with (paged, scrolling views). So in my app, I scroll it, then when it stops it shows the Image(Result) for 3 seconds, then a button pop-ups, if you…
Bazinga
  • 2,456
  • 33
  • 76
2
votes
2 answers

how to load multiple images in iCarousel using this code?

i'm loading bunch of images in coverflow using i carousel but i'm not getting it?..initially i got Signal sigabart issue..after i edited some of the code the view gets displayed...Am i missing something?... #import…
Vishnu
  • 2,243
  • 2
  • 21
  • 44
2
votes
5 answers

NSMutableArray Difficulty

If you wanna see the code Im having problem with, here is the link: Code My question is connected with my past question. I'm really having problem with my NSMutableArray, I'm currently using iCarousel for my slotMachine object(slot1 and slot2). My…
Bazinga
  • 2,456
  • 33
  • 76
2
votes
2 answers

How to create individual action for each button in icarousel?

I've created an app that shows 8 buttons in coverflow using icarousel.i have to assign different action for each button.Here is my piece of code for viewcontroller.m file.. - (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel { return…
Vishnu
  • 2,243
  • 2
  • 21
  • 44
2
votes
2 answers

In iCarousel images are overlapping.

My code is below - (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view { UIImageView *imgView = nil; if (view == nil) { NSLog(@"no is %i",index); view = [[[UIView…
Sharma
  • 141
  • 3
1
vote
1 answer

Hidden iCarousel Item reflection effect

I got an app with iCarousel library. All works perfect. But i need cover flow without reflection. How should i dismiss it? Thnx.
Eugene Trapeznikov
  • 3,220
  • 6
  • 47
  • 74