Skip to content

Instantly share code, notes, and snippets.

@MaherKSantina
Last active August 9, 2018 10:18
Show Gist options
  • Save MaherKSantina/b11cdbd5953a8567c9b0238741251aa4 to your computer and use it in GitHub Desktop.
Save MaherKSantina/b11cdbd5953a8567c9b0238741251aa4 to your computer and use it in GitHub Desktop.
class ListingView: UIView {
override init(frame: CGRect) {
super.init(frame: frame)
initView()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
initView()
}
func initView() {
//TODO: Add xib layout here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment