Created
July 14, 2018 09:10
-
-
Save yakimelon/9d66d503e70bbe578666d6387cfb21e2 to your computer and use it in GitHub Desktop.
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
class TimelineTableViewCell: UITableViewCell { | |
@IBOutlet weak var userName: UILabel! | |
@IBOutlet weak var animalImage: UIImageView! | |
@IBOutlet weak var animalMovie: AVPlayerView? | |
override func awakeFromNib() { | |
super.awakeFromNib() | |
self.userName.adjustsFontSizeToFitWidth = true | |
} | |
override func setSelected(_ selected: Bool, animated: Bool) { | |
super.setSelected(selected, animated: animated) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment