passforios/pass/UserInterface/UILocalizedLabel.swift

19 lines
294 B
Swift
Raw Normal View History

2019-01-20 11:24:57 +01:00
/*
UILocalizedLabel.swift
pass
Created by Danny Moesch on 20.01.19.
Copyright © 2019 Bob Sun. All rights reserved.
*/
import UIKit
import passKit
class UILocalizedLabel: UILabel {
override func awakeFromNib() {
super.awakeFromNib()
text = text?.localize()
}
}