Created
December 23, 2018 06:09
-
-
Save barefeettom/114afff52993fae3ba53968ede261452 to your computer and use it in GitHub Desktop.
detailImage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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