2017-02-13 01:15:42 +08:00
|
|
|
//
|
|
|
|
|
// ContentTableViewCell.swift
|
|
|
|
|
// pass
|
|
|
|
|
//
|
|
|
|
|
// Created by Mingshen Sun on 12/2/2017.
|
|
|
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
|
|
class ContentTableViewCell: UITableViewCell {
|
|
|
|
|
|
|
|
|
|
override func awakeFromNib() {
|
|
|
|
|
super.awakeFromNib()
|
|
|
|
|
// Initialization code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override func setSelected(_ selected: Bool, animated: Bool) {
|
|
|
|
|
super.setSelected(selected, animated: animated)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func getContent() -> String? {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 13:16:25 -07:00
|
|
|
func setContent(content: String?) { }
|
2017-02-13 01:15:42 +08:00
|
|
|
|
|
|
|
|
}
|