Is it possible to add custom UIView with autolayout to iCarousel?
If I try to set constraints when custom view is created in iCarousel delegate method
-(UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
app crashed because constraints can be added when view is added to superview but at this point it isn't.
I have new xib for custom view. Problem is that my custom view is too large to fit in iCarousel on iPhone, I don't have problem with arranging views in my custom view but I have problem to fit my custom view in iCarousel because I don't know where to set constraints as I sad constraints can't be set in "viewForItemAtIndex" because view doesn't have superview at that point