Create a iCarousel with a inverted wheel type using a custom view from nib
@IBOutlet weak var viewCarousel: iCarousel!
override func viewDidLoad() {
super.viewDidLoad()
viewCarousel.type = .invertedWheel
viewCarousel.isVertical = true
viewCarousel.delegate = self
viewCarousel.dataSource = self
}
iCarousel DataSource
func numberOfItems(in carousel: iCarousel) -> Int {
return 25
}
func carousel(_ carousel: iCarousel, viewForItemAt index: Int, reusing view: UIView?) -> UIView {
// use a custom view from nib
let view = Bundle.main.loadNibNamed("CarouselReuseView", owner: self, options: nil)![0] as! CarouselReuseView
view.frame.size = CGSize(width: self.view.frame.size.width/2, height: 83.0)
view.backgroundColor = UIColor.lightGray
let friend = friendList[index] as friend
view.lblName.text = friend.fullName
let url = friend.photo
let task = URLSession.shared.dataTask(with: URL(string: url)!, completionHandler: {data, response, error in
if error == nil {
DispatchQueue.main.async {
view.imageView.image = UIImage(data: data!)
view.imageView.layer.cornerRadius = view.imageView.frame.size.width/2
view.imageView.layer.masksToBounds = true
}
}
})
task.resume()
return view
}
}
Objectiv C
@property (weak, nonatomic) IBOutlet iCarousel *carouselView;
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
_carouselView.type = iCarouselTypeInvertedWheel;
_carouselView.vertical = true;
_carouselView.delegate = self;
_carouselView.dataSource = self;
_carouselView.layer.masksToBounds = true;
}
iCarousel DataSource
-(NSInteger)numberOfItemsInCarousel:(iCarousel *)carousel {
return 10;
}
-(UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view {
CustomView* myViewObject = [[[NSBundle mainBundle] loadNibNamed:@"customView" owner:self options:nil] objectAtIndex:0];
myViewObject.lbl.text = [NSString stringWithFormat:@"%ld",(long)index];
return myViewObject;
}
here CustomView is my subclass of UIView and "customView" is UIView Xib name
i hope this help you
More info :- https://github.com/nicklockwood/iCarousel
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…