You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
715 B
18 lines
715 B
// Copyright © 2015 Abhishek Banthia |
|
|
|
import Cocoa |
|
|
|
class FinalOnboardingViewController: NSViewController { |
|
@IBOutlet var titleLabel: NSTextField! |
|
@IBOutlet var subtitleLabel: NSTextField! |
|
@IBOutlet var accesoryLabel: NSTextField! |
|
@IBOutlet var accessoryImageView: NSImageView! |
|
|
|
override func viewDidLoad() { |
|
super.viewDidLoad() |
|
titleLabel.stringValue = "You're all set!" |
|
subtitleLabel.stringValue = "Thank you for the details." |
|
accesoryLabel.stringValue = "You'll see a clock icon in your Menu Bar when you launch the app. If you'd like to see a dock icon, go to Preferences." |
|
accessoryImageView.image = Themer.shared().menubarOnboardingImage() |
|
} |
|
}
|
|
|