カルーセルUIを実装しようとしてUICollectionViewでやろうとしたりiCarouselがいいかなーと悩んだりしたのですが、UIScrollViewを用いた方法がとても平易で分かりやすかったのでSwift 3版載せさせていただきます。
出典はこちら↓
[XCODE] UIScrollViewを用いてページングUIを実現する方法 / YoheiM.NET
http://www.yoheim.net/blog.php?q=20120715
Storyboard

必ず Paging Enabled
にチェック を入れます。
Code
ViewController.swift
let size = CGSize(width: scrollView.frame.size.width, height: 200)
let contentRect = CGRect(x: 0, y: 0, width: size.width * 4, height: size.height)
let contentView = UIView(frame: contentRect)
let subContentView = UIView(frame: CGRect(x: 0, y: 0, width: size.width, height: size.height))
subContentView.backgroundColor = .green
contentView.addSubview(subContentView)
let secondContentView = UIView(frame: CGRect(x: size.width, y: 0, width: size.width, height: size.height))
secondContentView.backgroundColor = .blue
contentView.addSubview(secondContentView)
let thirdContentView = UIView(frame: CGRect(x: size.width * 2, y: 0, width: size.width, height: size.height))
thirdContentView.backgroundColor = .red
contentView.addSubview(thirdContentView)
let fourthContentView = UIView(frame: CGRect(x: size.width * 3, y: 0, width: size.width, height: size.height))
fourthContentView.backgroundColor = .yellow
contentView.addSubview(fourthContentView)
scrollView.addSubview(contentView)
scrollView.contentSize = contentView.frame.size
scrollView.contentOffset = CGPoint(x: size.width, y: 0)
Result
DEAL WITH IT!
コード置いときます。
https://github.com/keisei1092/CarouselByUIScrollViewPractice