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
3
votes
2 answers

iCarousel rotary mode scroll views one by one / pagination

I'm using iCarousel in rotary mode. I'd like to have my views scrolled one by one in a paginated way. I've tried many settings but couldn't manage to do that. The settings i'm looking for is a bit like "pagingEnabled" in UIScrollView, but with the…
Ben G
  • 3,965
  • 3
  • 30
  • 34
3
votes
3 answers

Trying to implement iCarousel into my project, but nothing's showing up - what am I doing wrong?

I'm trying to use the iCarousel library to implement a carousel type picker in my app, but when I load the view that should display the carousel, nothing appears. Here's the relevant code: iCarousel delegate methods: -…
user212541
  • 1,878
  • 1
  • 21
  • 30
3
votes
1 answer

iOS - iCarousel only uses indexes of visible views

I am implementing iCarousel (using coverflow type) to show a bunch of images of some videos that are available in my app. (2 seperate carousels, same problem) I use the arrays of videos for the numberOfItemsInCarousel (currently 60) and…
JimmyJammed
  • 9,598
  • 19
  • 79
  • 146
3
votes
1 answer

iCarousel iOS 6 - Storyboarding

i tried to put iCarousel to my Storyboard project (my XCode is updated to iOS 6) exactly according to the StoryboardExample from Nick Lockwood. But in the moment when I ctrt+drag UIView to connect dataSource, delegate and carousel with…
Iva
  • 47
  • 8
3
votes
4 answers

Objective C : Adding Action On Array of Buttons

i'm a newbie in Objective-C can someone help me out here? I am trying to make a carousel of button but i failed to do it. What i got it just displaying all the buttons on load and that's it. I can't add action on each button, I mean tagging…
Lakan Bahande
  • 165
  • 1
  • 3
  • 12
3
votes
2 answers

iPhone - Carousel

I use open source, iCarousel in my application to bring the carousel control. The carousel type which I use is iCarouselTypeRotary and the images are arranged linearly in this type. But, I need the images to bring like the carousel in the attached…
iOS
  • 3,526
  • 3
  • 37
  • 82
3
votes
5 answers

How to set ICarousel to slide one time for one one image

I am using ICarousel to make my Electronic Album. When you slide the album , the default setting by ICarousel is that it will move to some distance. What I need is slide one time for one one image only. I found ICarousel is not based on ScrollView…
itenyh
  • 1,921
  • 2
  • 23
  • 38
3
votes
1 answer

Having difficulty in iCarousel importing image

apple beginner here. Im currently studying and trying the iCarousel by nickLockwood. Im planning on putting images in the iCarousel. So here's my .m and .h code: // .m @implementation ViewController @synthesize images; ... - (void)awakeFromNib { …
Bazinga
  • 2,456
  • 33
  • 76
3
votes
0 answers

iCarousel right to left scroll moving to left to right

Am using iCarousel for my ipad application , carousel type is iCarouselTypeLinear. while scrolling to right to left it's moving to left to right. please help me to fix this issue.
Anand
  • 291
  • 3
  • 13
2
votes
2 answers

Need drag and drop a view in icarousel

I am using icarousel in my iPad application. I want a functionality like drag and drop of objects in that icarousel. Drag in a view out of the carousel to delete an item from it and drop a view in the carousel to add an item to in. I have downloaded…
Naveen
  • 900
  • 1
  • 7
  • 23
2
votes
1 answer

How to change icarousel radius according to the screen size?

Hello I want to make half circle rotating wheel. So I used iCarousel for this. My problem is how to change the radius of the wheel according to the screen size. These are my constraints. This red view is the iCarousel view
user1960169
  • 3,533
  • 12
  • 39
  • 61
2
votes
1 answer

UIView as items of a carousel

I want to use carousel in my objective-c application. I have an UIViewController containing an UIView (with a specific width and height). The content of this UIView must be as a carousel: Every item of my carousel should have an image and some text.…
Ne AS
  • 1,490
  • 3
  • 26
  • 58
2
votes
0 answers

How do I add images to icarousel from firebase users in my swift app?

I am creating an app where users will be able to scroll through random images from other users. I am programming in swift and using firebase as my back end. I was able to get my code for icarousel working but I need to change it to account for my…
2
votes
0 answers

UITapGestureRecognizer doesn't work in Landscape

I am trying to add tap recognizers to my iCarousel project. In order to accomplish this, I have written this: func carousel(carousel: iCarousel, viewForItemAtIndex index: Int, reusingView view: UIView?) -> UIView { let rView = UIView(frame:…
Pranav Wadhwa
  • 7,666
  • 6
  • 39
  • 61
2
votes
3 answers

different width for different item - in iCarousel

I am working with iCarousel - https://github.com/nicklockwood/iCarousel. While I need to change the width of different items, means to make different width for different items. Not sure how to make the change, please help if you have any experience…
James
  • 227
  • 1
  • 2
  • 11
1 2
3
22 23