Files
libr-ios/librx/MenuTableViewCell.swift
2015-08-04 01:18:37 +08:00

28 lines
554 B
Swift

//
// 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
}
}