22 lines
464 B
Swift
22 lines
464 B
Swift
|
|
//
|
||
|
|
// TextViewTableViewCell.swift
|
||
|
|
// pass
|
||
|
|
//
|
||
|
|
// Created by Mingshen Sun on 11/2/2017.
|
||
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
class TextViewTableViewCell: UITableViewCell {
|
||
|
|
|
||
|
|
@IBOutlet weak var contentTextView: UITextView!
|
||
|
|
override func awakeFromNib() {
|
||
|
|
super.awakeFromNib()
|
||
|
|
}
|
||
|
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
||
|
|
super.setSelected(selected, animated: animated)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|