This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import FLAnimatedImage | |
extension FLAnimatedImage { | |
convenience init (gifResource: String) { | |
if let data = NSDataAsset(name: gifResource) { | |
self.init(animatedGIFData: data.data) | |
} else { | |
self.init(animatedGIFData: nil) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final class ViewController: UIViewController{ | |
@Delayed @objc private var usernameField: UITextField | |
} |