SampleTableViewCell.swift 456 B

1234567891011121314151617181920212223
  1. //
  2. // SampleTableViewCell.swift
  3. // PDFGenerator
  4. //
  5. // Created by Suguru Kishimoto on 2016/02/27.
  6. //
  7. //
  8. import UIKit
  9. class SampleTableViewCell: UITableViewCell {
  10. @IBOutlet weak var leftLabel: UILabel!
  11. @IBOutlet weak var rightLabel: UILabel!
  12. override func awakeFromNib() {
  13. super.awakeFromNib()
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. }
  18. }