passforios/pass/Views/ContentTableViewCell.swift
2018-12-09 16:59:07 -08:00

28 lines
545 B
Swift

//
// 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
}
func setContent(content: String?) { }
}