Skip to content

Instantly share code, notes, and snippets.

@barefeettom
Created December 23, 2018 06:09
Show Gist options
  • Save barefeettom/114afff52993fae3ba53968ede261452 to your computer and use it in GitHub Desktop.
Save barefeettom/114afff52993fae3ba53968ede261452 to your computer and use it in GitHub Desktop.
detailImage
import UIKit
import BFWControls
@IBDesignable class NewsTableViewCell: NibTableViewCell {
@IBOutlet weak var detailImageView: UIImageView!
@IBInspectable var detailImage: UIImage? {
get {
return detailImageView.image
}
set {
detailImageView.image = newValue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment