VMF_AboutViewController
@MainActor
class VMF_AboutViewController : VMF_BaseViewController
                This displays the About screen.
- 
                  
                  
This displays the icon image.
Declaration
Swift
@IBOutlet @MainActor weak var iconImage: UIImageView? - 
                  
                  
This displays the app name.
Declaration
Swift
@IBOutlet @MainActor weak var appNameLabel: UILabel? - 
                  
                  
This displays the full version of the app.
Declaration
Swift
@IBOutlet @MainActor weak var versionLabel: UILabel? - 
                  
                  
The header for the dependency list
Declaration
Swift
@IBOutlet @MainActor weak var dependencySectionHeader: UILabel? 
- 
                  
                  
Called when the view has completed loading.
Declaration
Swift
@MainActor override func viewDidLoad() - 
                  
                  
Called when the view is about to appear.
Declaration
Swift
@MainActor override func viewWillAppear(_ inIsAnimated: Bool)Parameters
inIsAnimatedTrue, if the appearance is animated.
 - 
                  
                  
Called when the view is about to disappear.
Declaration
Swift
@MainActor override func viewWillDisappear(_ inIsAnimated: Bool)Parameters
inIsAnimatedTrue, if the disappearance is animated.
 
- 
                  
                  
This is called when one of the URL buttons is hit, and takes us to the site.
Declaration
Swift
@IBAction @MainActor func urlButtonHit(_ inButton: VMF_URLButton) 
            View on GitHub