I'm trying to implement an iCarousel within a detailedView using a storyboard.
LocationDetailViewController.h
@interface LocationDetailViewController : UIViewController <iCarouselDataSource, iCarouselDelegate>
@property (nonatomic, strong) IBOutlet iCarousel *carousel;
Storyboard:
The iCarousel is a View
dataSource -> View
delegate -> View
carouel -> Location Detai...
When I click from the tableview to the detail view where the carousel is located I get an error, before the .m is called (tested with NSLOG).
I receive this error:
-[UIView numberOfItemsInCarousel:]: unrecognized selector sent to instance 0xb3134c0
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIView numberOfItemsInCarousel:]: unrecognized selector sent to instance 0xb3134c0'
Any Ideas on how to fix this?