You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
715 B
29 lines
715 B
![]()
2 years ago
|
//
|
||
|
// NoDataChartView.swift
|
||
|
// HPlusFit
|
||
|
//
|
||
|
// Created by lemo. on 2019/9/24.
|
||
|
// Copyright © 2019 lemo. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class NoDataChartView: UIView {
|
||
|
|
||
|
override init(frame: CGRect) {
|
||
|
super.init(frame: frame)
|
||
|
let noDataLabel = UILabel()
|
||
|
noDataLabel.frame = self.bounds
|
||
![]()
1 year ago
|
noDataLabel.text = MultiLanguageKey_FB.noDataTipFB.localized
|
||
![]()
2 years ago
|
noDataLabel.textAlignment = .center
|
||
|
noDataLabel.font = SystemRegularFont(15.0)
|
||
|
noDataLabel.textColor = kRGBA(50.0, 50.0, 50.0, 0.5)
|
||
|
addSubview(noDataLabel)
|
||
|
}
|
||
|
|
||
|
required init?(coder aDecoder: NSCoder) {
|
||
|
fatalError("init(coder:) has not been implemented")
|
||
|
}
|
||
|
|
||
|
}
|