VMF_AboutViewController

class VMF_AboutViewController : VMF_BaseViewController

This displays the About screen.

  • This displays the icon image.

    Declaration

    Swift

    @IBOutlet
    weak var iconImage: UIImageView?
  • This displays the app name.

    Declaration

    Swift

    @IBOutlet
    weak var appNameLabel: UILabel?
  • This displays the full version of the app.

    Declaration

    Swift

    @IBOutlet
    weak var versionLabel: UILabel?
  • The header for the dependency list

    Declaration

    Swift

    @IBOutlet
    weak var dependencySectionHeader: UILabel?

Base Class Overrides

  • Called when the view has completed loading.

    Declaration

    Swift

    override func viewDidLoad()
  • Called when the view is about to appear.

    Declaration

    Swift

    override func viewWillAppear(_ inIsAnimated: Bool)

    Parameters

    inIsAnimated

    True, if the appearance is animated.

  • Called when the view is about to disappear.

    Declaration

    Swift

    override func viewWillDisappear(_ inIsAnimated: Bool)

    Parameters

    inIsAnimated

    True, if the disappearance is animated.

Callbacks

  • This is called when one of the URL buttons is hit, and takes us to the site.

    Declaration

    Swift

    @IBAction
    func urlButtonHit(_ inButton: VMF_URLButton)