How do I remove all of the subviews from a UIScrollview?
Complementing the Swift concise version from a previous answer (Swift 3.0 ready):
_ = scrollView.subviews.filter { $0 is UIImageView }.map { $0.removeFromSuperview() }