-
Notifications
You must be signed in to change notification settings - Fork 227
Contained #219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Contained #219
Conversation
| import UIKit | ||
|
|
||
| class GameViewController: UIViewController { | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Connect SkView outlet here and do execute code.
| } | ||
|
|
||
|
|
||
| /* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete boilerplate comments that have no use.
|
|
||
| class InfoDetailViewController: InfoViewController { | ||
| @IBAction func unwindSegue(_ sender: UIStoryboardSegue) { | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no code in this scope
| import UIKit | ||
|
|
||
| class InfoViewController: UIViewController { | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's best practice to delete files if there is no code in it.
|
|
||
|
|
||
| @IBAction func toggleRoll(_ sender: UISwitch) { | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take the value of the switch and assign that value to an instance variable for our class object.
| } | ||
|
|
||
| @IBAction func toggleZoom(_ sender: UISwitch) { | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take the value of the switch and assign that value to an instance variable for our class object.
mikeflow22
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please review the following comments.
@mrflowers22