mirror of
https://github.com/wahyd4/libr-ios.git
synced 2026-08-09 05:06:46 +10:00
28 lines
554 B
Swift
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
|
|
}
|
|
|
|
}
|
|
|