Skip to content

Instantly share code, notes, and snippets.

@aybekckaya
Last active May 18, 2019 12:15
Show Gist options
  • Save aybekckaya/cc410b0cc40195804c80d1499c2411c4 to your computer and use it in GitHub Desktop.
Save aybekckaya/cc410b0cc40195804c80d1499c2411c4 to your computer and use it in GitHub Desktop.
// ViewController.swift
bannerView = BannerView(frame: CGRect(x: 0, y: 64, width: self.view.frame.size.width, height: 200))
self.view.addSubview(bannerView)
bannerView.reloadData(numberOfItems: 5) { (bannerView, index) -> (UIView) in
let view = UIView()
view.backgroundColor = UIColor.red
return view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment