Simple and light weight UIView that animate text with an image.
Translucid is available through CocoaPods . To install it, simply add the following line to your Podfile:
pod "Translucid", '~> 0.0.1'
override func loadView() { super.loadView() let starWars: Translucid = Translucid(frame: self.view.bounds) starWars.font = UIFont(name: "Starjedi", size: 20)! starWars.text = "Star Wars" starWars.backgroundImage = UIImage(named: "stars") self.view.addSubview(starWars) starWars.animate() }
Lucas Ortis:
Translucid is available under the MIT license. See the LICENSE file for more info.