// // MenuTableViewCell.swift // librx // // Created by Yunlong Zheng on 15/8/4. // Copyright (c) 2015年 librx. All rights reserved. // import UIKit class MenuTableViewCell: UITableViewCell { @IBOutlet weak var titleLabel:UILabel! override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func setSelected(selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state } }