SwiftUI Slots Challenge Solution

  Рет қаралды 9,631

CodeWithChris

CodeWithChris

Күн бұрын

Пікірлер: 52
@radimbochnak6641
@radimbochnak6641 4 жыл бұрын
Greetings to you from Czech republic, Ostrava. Finally very good introducing to XCode SwiftUI. Your presentation of code is excellent. Many thanks. Radim
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Ahoj, Radim! Thanks for dropping by! Loved visiting Prague two months ago and Cesky Krumlov. Great times. Thanks for learning with us. The best for you is yet to come! Dekuji! :-) -Arthur
@chajdo
@chajdo 4 жыл бұрын
One of the most comprahensive tutorials in internet about coding in swift and making apps on ios
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Thank you! 🙌 - Kat
@DrMemory99
@DrMemory99 4 жыл бұрын
Very helpful especially verbalizing your thinking and rational for creating new functions/abstractions. One thing I usually get confused over during longish tutorials is matching (or messing up) code block braces. Might be nice to put a comment on the closing brace for longer tutorials where your scrolling back and forth. For example '// end processWin or // //end VStack... (or it's just me pausing and resuming at the wrong places) - Thank you again! love all your tutorials and narratives.
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Thanks for this feedback! It's helpful. - Kat
@yukishima260
@yukishima260 4 жыл бұрын
Thank you! It'd take me a while to understand but I'll keep copying everything till the day comes... I wish I could type as fast as you though!! It was a great challenge.
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Awesome! Just keep practicing and it'll be easier for you eventually! - Kat
@kienthucvakhoahoc
@kienthucvakhoahoc 4 жыл бұрын
Very good, thanks!
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Our pleasure! - Kat
@goodkids9491
@goodkids9491 4 жыл бұрын
Hey codewithchris If you have build an app will it so be able to be downloaded by people around the world. If not do you know how. Please help me com true with this.
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, you need an apple developer account to be able to submit apps to the AppStore, it will then go through evaluation if it passes the "apple standard". If it passes it should be ready to download and use by any apple users anytime - Francis
@mayaa6910
@mayaa6910 4 жыл бұрын
@@CodeWithChristhat was a great question I was thinking that too!
@isaiahclemons1860
@isaiahclemons1860 4 жыл бұрын
Do you have somewhere that the completed file can be downloaded like with the apps in the other modules? Thank you!
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hi! Here are all of the resources: bit.ly/2AyuoOs bit.ly/31K9F5u bit.ly/3gtlSzB bit.ly/38qPdrl - Kat
@isaiahclemons1860
@isaiahclemons1860 4 жыл бұрын
@@CodeWithChris Thank you!
@freehtet
@freehtet 4 жыл бұрын
Hi, where can we get the graphic assets ?
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Here are all of the resources: bit.ly/2AyuoOs bit.ly/31K9F5u bit.ly/3gtlSzB bit.ly/38qPdrl - Kat
@mig12394
@mig12394 4 жыл бұрын
Thanks a lot for your tutorial. Could you tell us how to put all the processing func in a swift file thanks for your answer
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, what do you mean by processing func?, maybe to make it clearer try to head on over to our forum at codecrew.codewithchris.com so we can take a better look at your question - Francis
@tarashanis791
@tarashanis791 4 жыл бұрын
Thank you for the awesome tutorials! When I press one row "Spin" button my Credits count is not effected, did I missed something? Thank you!
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, check the steps maybe your credits variable is not global or you might have used a local credits variable (only in the function) so the value doesn't change - Francis
@srivatsayellakara7343
@srivatsayellakara7343 4 жыл бұрын
Hey Chris can you help me !! i want to create a WebView and i want to change the URL by clicking button in same page can this be possible
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, if you click a button the web (well it will work as intended and will take you to that webpage). however if you want to go to another website, then the button should be outside your webview and inside your code so you can change the "URL" to reload the webview - Francis
@goodkids9491
@goodkids9491 4 жыл бұрын
Chris Do you know If your app get's viral worldwide in app store. Will you so get invite from apple or some thing like that, for get award or some thing like that?
@chrispy104k
@chrispy104k 4 жыл бұрын
Apple present awards to developers based on a whole lot of criteria not just on popularity. en.wikipedia.org/wiki/Apple_Design_Awards
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, I'm not sure if apple notifies you but you should be able to view your app analytics as it is part of your developer program, awards are probably hard to come by but who knows :) - Francis
@goodkids9491
@goodkids9491 4 жыл бұрын
chrispy_wa what will happen if your app gets #1 in the App Store, will you get invited from big tech companies like Apple, Facebook etc
@mandarinnu
@mandarinnu 4 жыл бұрын
Nice content. Thank you!
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Thank you for watching! 🙌 - Kat
@AlexDMI1982
@AlexDMI1982 3 жыл бұрын
where did you get CardView? It was before Image. There is no var for CardView and thus I am getting error
@CodeWithChris
@CodeWithChris 3 жыл бұрын
"Hello, you probably missed lessons 1-8 of this series since you only went here to the challenge solution.. check it out in full here kzbin.info/aero/PLMRqhzcHGw1Z-lZaaun3A3mV9PbEfHANI - Francis"
@AlexDMI1982
@AlexDMI1982 3 жыл бұрын
@@CodeWithChris yes, sorted it out already, thank you
@chrispy104k
@chrispy104k 4 жыл бұрын
Ah, so you put all the HStack's in a VStack. I opted to use Group { } to achieve the same thing.
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, im not sure how Group behaves in terms of alignment and then there are lots of stacks inside it, but it should work fine, hstack + vstack combo seems to be convenient enough as it is :) - Francis
@nemoooo5767
@nemoooo5767 2 жыл бұрын
hi chris can you give me the code for this whole song because the effect and the score drop quickly and it can go negative. Can you give me the solution and the code for the whole article?
@CodeWithChris
@CodeWithChris 2 жыл бұрын
Hello! Best if you post your question in our CodeCrew forum so that our tech support staff can assist you. Go here: codewithchris.com/start Thank you for learning with us! :) -Arthur
@WiseWellnessJourney
@WiseWellnessJourney 3 жыл бұрын
Hi Chris! For some reason, my slots are not updating with the right background, and credits are not calculated properly. Could you please share your completed project, so that I can match the code? Links that I've found in other comments under this video contains only pictures for slots
@CodeWithChris
@CodeWithChris 3 жыл бұрын
"Hello, sorry took some time to get it set up, heres the link to the source code on github github.com/codewithchris/swiftui-slots - Francis"
@WiseWellnessJourney
@WiseWellnessJourney 3 жыл бұрын
@@CodeWithChris thank you Chris!
@allesgoenner
@allesgoenner 3 жыл бұрын
Can anyone share the result file?
@CodeWithChris
@CodeWithChris 3 жыл бұрын
People working on this are here: codecrew.codewithchris.com/ You should get the help you need @AdrienVillez
@mydns2769
@mydns2769 4 жыл бұрын
can you please share the source code?
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Try to look here in the resources: kzbin.info?q=https%3A%2F%2Fcodewithchris.com%2Fcode%2FSwiftUI%2520M1L02%2520Lesson%2520Assets.zip&redir_token=OusZa5Rlj8qosxZTHYwrI8SlSw58MTU4NDkyMTAwOEAxNTg0ODM0NjA4&event=video_description&v=rmTQcILJRcY kzbin.info?v=MJP60XnN4us&event=video_description&redir_token=WAYn_gzVR9DkvnO-nB_POMY7VJV8MTU4NDkyMTA4OUAxNTg0ODM0Njg5&q=https%3A%2F%2Fcodewithchris.com%2Fcode%2FSwiftUI%2520M1L03%2520Activity%2520Assets.zip kzbin.info?q=https%3A%2F%2Fcodewithchris.com%2Fcode%2FSwiftUI%2520M1L04%2520Starter%2520Project.zip&v=wQLOWv8l7yI&event=video_description&redir_token=LokwxrZrkMlUj4Vfji_dWA8A4CJ8MTU4NDkyMTExNEAxNTg0ODM0NzE0 kzbin.info?redir_token=M_WpsanhBg_3FWOLzKMjiS_OrjB8MTU4NDkyMTE1M0AxNTg0ODM0NzUz&q=https%3A%2F%2Fcodewithchris.com%2Fcode%2FSwiftUI%2520M1L06%2520Lesson%2520Assets.zip&v=51Z9Kun7tFo&event=video_description - Kat
@shoesli7631
@shoesli7631 4 жыл бұрын
the "func isMatch" is a little bit hard to understand
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, isMatch is just a function that you can easily call to check if all 3 indexes are the same (similar value), thats technically all it does - Francis
@MrGZM90
@MrGZM90 4 жыл бұрын
Hey, codewithchris are you doing a video on swift UIKIT tutorial for beginners?
@CodeWithChris
@CodeWithChris 4 жыл бұрын
We have an entire playlist of that here: bit.ly/BeginnersPlaylist -Kat
@goodkids9491
@goodkids9491 4 жыл бұрын
Hey, codewithchirs Do you know how to release your app to all countries in the app store.
@CodeWithChris
@CodeWithChris 4 жыл бұрын
Hello, you might need to translate some parts of your app for that, but i suggest contact apple support on how to best do it because they have the final say on what apps get put in the AppStore - Francis
SwiftUI Animations - 3 Simple Techniques (ft. Mark Moeykens)
21:43
CodeWithChris
Рет қаралды 21 М.
Improving the SwiftUI Slots App
24:11
CodeWithChris
Рет қаралды 17 М.
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 4,1 МЛН
Government Brainwashing Expert On How To Spot Lies & Influence Anyone - Chase Hughes
2:25:42
DRVN Podcast with Leon Hendrix
Рет қаралды 2,6 МЛН
SwiftUI Tutorial: Build a Slots App
27:27
CodeWithChris
Рет қаралды 32 М.
SFSymbols - Why use them?
10:52
CodeWithChris
Рет қаралды 20 М.
SwiftUI Data Flow and View Composition Tutorial
11:58
CodeWithChris
Рет қаралды 19 М.
How To Work With Any API (API Tutorial using URL Requests)
27:07
CodeWithChris
Рет қаралды 126 М.
7 Cybersecurity Tips NOBODY Tells You (but are EASY to do)
13:49
All Things Secured
Рет қаралды 795 М.
SwiftUI List with Custom Cell & Passing Data
36:27
Sean Allen
Рет қаралды 118 М.
Basic SwiftUI Layout Containers and UI Elements
14:30
CodeWithChris
Рет қаралды 38 М.
SwiftUI - How to do Navigation in your Swift UI app
41:58
CodeWithChris
Рет қаралды 80 М.
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 4,1 МЛН