Created
August 6, 2016 04:59
-
-
Save niwatako/5d37ab556c44cf87b496917d4bed631e to your computer and use it in GitHub Desktop.
UITableViewCellのカスタムクラスTimelineCellをTimelineCell.swiftファイルに作成 #CodePiece #realm_swift #realm_jp
This file contains hidden or 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 | |
class TimelineCell: UITableViewCell { | |
@IBOutlet weak var iconView: UIImageView! | |
@IBOutlet weak var nameLabel: UILabel! | |
@IBOutlet weak var tweetTextView: UITextView! | |
override func prepareForReuse() { | |
iconView.image = nil | |
nameLabel.text = nil | |
tweetTextView.text = nil | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment