Skip to content

Instantly share code, notes, and snippets.

@niwatako
Created August 6, 2016 04:59
Show Gist options
  • Save niwatako/5d37ab556c44cf87b496917d4bed631e to your computer and use it in GitHub Desktop.
Save niwatako/5d37ab556c44cf87b496917d4bed631e to your computer and use it in GitHub Desktop.
UITableViewCellのカスタムクラスTimelineCellをTimelineCell.swiftファイルに作成 #CodePiece #realm_swift #realm_jp
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