NACCAboutViewController
@MainActor
class NACCAboutViewController : NACCBaseViewController
This screen displays the information about the app.
-
This is the size of the icon for the logo button.
Declaration
Swift
@MainActor private static let _iconSizeInDisplayUnits: CGFloat
-
This displays the app icon. It is a button, that links to the main Web site.
Declaration
Swift
@IBOutlet @MainActor weak var appIconButton: UIButton?
-
This displays the app version. Selecting it brings up an alert that includes the build number.
Declaration
Swift
@IBOutlet @MainActor weak var versionLabelButton: UIButton?
-
This displays a button that links to the app privacy site.
Declaration
Swift
@IBOutlet @MainActor weak var privacyButton: UIButton?
-
This displays the corporate Web site link.
Declaration
Swift
@IBOutlet @MainActor weak var lgvButton: UIButton?
-
This displays the help text.
Declaration
Swift
@IBOutlet @MainActor weak var helpView: UITextView?
-
Called when the view hierarchy has completed loading.
Declaration
Swift
@MainActor override func viewDidLoad()
-
Called when the version label button is tapped.
Declaration
Swift
@IBAction @MainActor func displayVersionInfo(_: UIButton)
-
Called when the privacy button is hit.
Declaration
Swift
@IBAction @MainActor func privacyButtonHit(_: Any)
-
Called when the app icon button is hit.
Declaration
Swift
@IBAction @MainActor func appIconButtonHit(_: Any)
-
Called when the button to visit the main site is hit.
Declaration
Swift
@IBAction @MainActor func lgvButtonHit(_: Any)