Created
January 26, 2020 19:40
-
-
Save Gabrimarin/1619ef92db8f5f1644d76f35637ddb65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class InfoViewController: UIViewController { | |
@IBOutlet weak var label1: UILabel! | |
@IBOutlet weak var label2: UILabel! | |
var dado: SeuObjeto = SeuObjeto() | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
label1.text = dado.atributo1 | |
label2.text = dado.atributo2 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment