NACCAboutViewController

class NACCAboutViewController : NACCBaseViewController

This screen displays the information about the app.

  • This is the size of the icon for the logo button.

    Declaration

    Swift

    private static let _iconSizeInDisplayUnits: CGFloat

Instance IBOutlet Properties

  • This displays the app icon. It is a button, that links to the main Web site.

    Declaration

    Swift

    @IBOutlet
    weak var appIconButton: UIButton?
  • This displays the app version. Selecting it brings up an alert that includes the build number.

    Declaration

    Swift

    @IBOutlet
    weak var versionLabelButton: UIButton?
  • This displays a button that links to the app privacy site.

    Declaration

    Swift

    @IBOutlet
    weak var privacyButton: UIButton?
  • This displays the corporate Web site link.

    Declaration

    Swift

    @IBOutlet
    weak var lgvButton: UIButton?
  • This displays the help text.

    Declaration

    Swift

    @IBOutlet
    weak var helpView: UITextView?

Base Class Overrides

  • Called when the view hierarchy has completed loading.

    Declaration

    Swift

    override func viewDidLoad()

Callbacks

  • Called when the version label button is tapped.

    Declaration

    Swift

    @IBAction
    func displayVersionInfo(_: UIButton)
  • Called when the privacy button is hit.

    Declaration

    Swift

    @IBAction
    func privacyButtonHit(_: Any)
  • Called when the app icon button is hit.

    Declaration

    Swift

    @IBAction
    func appIconButtonHit(_: Any)
  • Called when the button to visit the main site is hit.

    Declaration

    Swift

    @IBAction
    func lgvButtonHit(_: Any)