import UIKit
class bar1TableViewCell: UITableViewCell {
@IBOutlet var view: UIView!
weak var headingType: UILabel!
var headingContent: var codeName: var percentage: UILabel!
var moneyCount: UILabel!
var dayCount: var surplus: UILabel!
//
// swift有2种构造器:指定构造器 designated init 和 便利构造器 convenience init。convenience init必须最终调用类中某个designated init
//
// init(style: UITableViewCellStyle,reuseIdentifier: String?) 是便利构造器,所以要调用指定构造器 init(coder aDecoder: NSCoder)
//
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
print("1")
let uiview=UIView()
uiview.frame=CGRectMake(0,self.bounds.width,216); font-family:'Helvetica Neue'; font-size:14px">100)
//self.backgroundColor=UIColor.blackColor()
uiview.backgroundColor=UIColor.blackColor()
self.addSubview(uiview) }
原文链接:https://www.f2er.com/swift/325390.html