Open
Conversation
swift-student
left a comment
There was a problem hiding this comment.
Hey Ben, excellent job getting everything hooked up with the tab bar and multiple storyboards. I did notice your settings weren't hooked up to the controls in storyboard, but after hooking them up (and swapping them), they work great! Keep up the good work!
Comment on lines
+13
to
+19
| @IBAction func toggleZoom(_ sender: UISwitch) { | ||
| Settings.shared.shouldRoll = sender.isOn | ||
| } | ||
|
|
||
| @IBAction func toggleRoll(_ sender: UISwitch) { | ||
| Settings.shared.shouldZoom = sender.isOn | ||
| } |
There was a problem hiding this comment.
These are swapped (oops) and not actually hooked up to the storyboard. Fixing that, it works great!
Author
|
Oh dang, yeah I originally put the settings in the info SB on the last
screen and when I realized my error and put them in the right place I
forgot to hook them up, my bad!
…On Thu, Jun 4, 2020 at 7:50 PM swift-student ***@***.***> wrote:
***@***.**** commented on this pull request.
Hey Ben, excellent job getting everything hooked up with the tab bar and
multiple storyboards. I did notice your settings weren't hooked up to the
controls in storyboard, but after hooking them up (and swapping them), they
work great! Keep up the good work!
------------------------------
In Contained/Contained/Files/SettingsViewController.swift
<#224 (comment)>
:
> + @IBAction func toggleZoom(_ sender: UISwitch) {
+ Settings.shared.shouldRoll = sender.isOn
+ }
+
+ @IBAction func toggleRoll(_ sender: UISwitch) {
+ Settings.shared.shouldZoom = sender.isOn
+ }
These are swapped (oops) and not actually hooked up to the storyboard.
Fixing that, it works great!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#224 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APLWC2L4JI624GQU4NC6CRTRVBMQBANCNFSM4NSJBVIQ>
.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@swift-student