Build Your FIRST iOS App For Beginners (2024) - Tutorial

  Рет қаралды 352,459

iOS Academy

iOS Academy

Күн бұрын

In this video, we'll be showing you how to make your very first iOS app in Xcode using SwiftUI. This tutorial is perfect for beginners, so if you're just getting started with app development, this is the video for you.
We'll start by walking you through the process of setting up Xcode and creating a new project. From there, we'll show you how to use SwiftUI to build the user interface of your app. You'll learn how to add elements such as text fields, buttons, and images to your app, and how to customize their appearance and behavior.
As we progress, we'll also cover some of the more advanced features of SwiftUI, such as how to use data binding and how to create custom views. By the end of this tutorial, you'll have a solid foundation in iOS app development and will be well on your way to creating your own apps.
So if you're ready to get started, let's dive in!
💻 Source Code: / iosacademy
🎥 Subscribe for more: www.youtube.co...
😎 Like my teaching style? Check out some of my most popular courses! courses.iosaca...
👉🏼 Connect (personal LinkedIn) / afrazsiddiqui
🚀 Follow on LinkedIn / ios-academy
** Popular Series
Building Instagram: courses.iosaca...
Building TikTok: / @iosacademy
SwiftUI for Beginners: ios-academy.te...
** Get Skillshare free for 2 Months and learn iOS
www.skillshare...
** Manage all your investments from app earnings on Betterment!
bit.ly/3eBwlI9
** Grow your own KZbin tech channel with TubeBuddy:
www.tubebuddy....
#swift #beginners #iOSDeveloper

Пікірлер: 197
@filipjakub6303
@filipjakub6303 Жыл бұрын
That is what I need, to start my passion. THX
@jasonluckey2214
@jasonluckey2214 2 жыл бұрын
Thank you for your very well put together teaching style. Everything is explained in a way that makes sense to a novice like me. I appreciate both your patience and your knowledge. It is a pleasure learning from you.
@iOSAcademy
@iOSAcademy 2 жыл бұрын
You're very welcome!
@baddiezone
@baddiezone Жыл бұрын
I agree , it was very clear and to the point, no extra context that wasn’t unneeded i enjoyed watching this ❤
@slavioli
@slavioli Жыл бұрын
Thank you! That was so much fun. I just started coding and this was very easy to follow.
@iOSAcademy
@iOSAcademy Жыл бұрын
Glad to hear
@sabanaazul3898
@sabanaazul3898 2 жыл бұрын
it's insane the amount of videos you are sharing with us, thank u!!!
@iOSAcademy
@iOSAcademy 2 жыл бұрын
Haha thanks! On our way to 100k
@tahasoumary775
@tahasoumary775 Жыл бұрын
congrats u got 100 @@iOSAcademy
@robertlewis6543
@robertlewis6543 Жыл бұрын
What's in the 'RickandMorty' folder? lol Great video!
@Jay-vg8xc
@Jay-vg8xc Жыл бұрын
Nudes obvs 😅😂
@jamo9008
@jamo9008 Жыл бұрын
Not stuff! I can tell you that!
@Ryland-tu6pj
@Ryland-tu6pj 6 ай бұрын
vid idea: one and a half hour of swift explanation
@WoolleyWoolf
@WoolleyWoolf 8 ай бұрын
Very very articulate and good talker. No teleprompter but everything on the fly. Great job. Maybe slow down and go easy on the concepts/jargon/scary computer geeky nerdy terms for the newbies.
@martygo
@martygo 9 ай бұрын
One word to rank this content: awesome 🤩 . Congrats.
@merion297
@merion297 11 ай бұрын
😁 Entered that enum part. The same as yours. For you, there's no issues. For me, »Consecutive declarations on a line must be separated by ';'« This is a great beginning. 😂 Did Apple change the syntax in the past year? Thanks for the tutorial btw, greatly appreciated! 🙏
@NayarJoolfoo
@NayarJoolfoo 11 ай бұрын
same here :(
@Ymitzna
@Ymitzna 9 ай бұрын
Sameeeee
@lekaumamabolo816
@lekaumamabolo816 9 ай бұрын
For those that get here and need help, declare (create) your enum like this: enum Emoji: String, CaseIterable { case 👩🏾‍🚀; case 😀; case 👨🏾‍💻; case 🥰; } to get "rid" (fix) the error mentioned in the comment #April2024
@fooskies3152
@fooskies3152 5 ай бұрын
Try this :) enum Emoji: String, CaseIterable { case salute = "🫡" case soccer = "⚽" case cityscape = "🏙" case balloon = "🎈" case cool = "😎" }
@luispagarcia
@luispagarcia Жыл бұрын
Really fun project! Thanks!
@jhavikash2474
@jhavikash2474 9 ай бұрын
It's very helpful for me Thanks brother 😊
@DR20005
@DR20005 Жыл бұрын
Hey! Probably because it is outdated, but the tutorial no longer works for me. I get an error when trying to add the emojis to the enum. Here is the workaround: import SwiftUI enum Emoji: String, CaseIterable { case checkmark = "✅" case cross = "❌" case wrench = "🔧" case sleepy = "💤" } struct ContentView: View { @State var selection = Emoji.checkmark var body: some View { VStack { Text((selection.rawValue)) .font(.system(size: 150)) Picker("Select Emoji", selection: $selection) { ForEach(Emoji.allCases, id: \.self) {emoji in Text(emoji.rawValue) } } .pickerStyle(.segmented) } .padding() } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }
@aatishmehta9878
@aatishmehta9878 Жыл бұрын
thankyou very much for your code i am new to swift and just saw the video do the same but still get the error but tried to run your code it workls perfectly well . @DR2005
@grantmataicross8825
@grantmataicross8825 11 ай бұрын
I wish he would change the title of the video to not say 2024 if the code doesn't even work in January of 24.. I had the same problem and am brand new to Xcode, and its taken me over an hour to think of looking in the comments for the solution.. Thanks for the help!
@dbloyd2
@dbloyd2 4 ай бұрын
Thank you. I have been wanting to build an iOS app for 15 years. Today I pulled up this tutorial and getting an error. My Xcode is 1 version higher. I guess every version changes the code to force developers to have to rewrite their code every year.
@ProFoxPlayer
@ProFoxPlayer 4 ай бұрын
It ran fine for me with latest version of Xcode
@axsh970
@axsh970 4 ай бұрын
THANK YOU i was scratching so hard why wasnt it working for me, did chatgpt everything and I was like am i Blind?? LOL
@veljkoradic4646
@veljkoradic4646 Ай бұрын
Mate , Now I’m fully ready , I want more!
@miguelconstantino-guzman5272
@miguelconstantino-guzman5272 2 ай бұрын
Very helpful! Thank you so much! 😄
@frankl7694
@frankl7694 Жыл бұрын
What happens if I have everything setup exactly the way shown in the video leading up until 7:40 and after the third emoji on line 11 it says 9 in bright red and has a bar with white text saying Consecutive declar... please help I'm so confused
@pearlroselllusterio-cz8le
@pearlroselllusterio-cz8le Жыл бұрын
encountered the same error
@mykolasenyk1
@mykolasenyk1 Жыл бұрын
Hey man! I've just been faced with the same issue. How did you solve it?
@frankl7694
@frankl7694 Жыл бұрын
@@mykolasenyk1 I actually gave up because I couldn't figure out how to sole it, let me know if you come across anything
@Hrammal15
@Hrammal15 Жыл бұрын
I fixed it by changing the emojis
@_1_112
@_1_112 Жыл бұрын
@@Hrammal15 thank you bro. it was resovled by doing so
@ninjaasmoke
@ninjaasmoke 6 ай бұрын
Please make this an entire series
@charlning7603
@charlning7603 Жыл бұрын
Thank you so much for posting this video! I found the feeling of being a software developer back!
@iOSAcademy
@iOSAcademy Жыл бұрын
Youre welcome!
@TravelEverywhere25
@TravelEverywhere25 Жыл бұрын
Thanks for making this video , i really enjoyed making my first ios app
@iOSAcademy
@iOSAcademy Жыл бұрын
Great to hear!
@IceCream7634Scratch
@IceCream7634Scratch 4 күн бұрын
Good video
@alexisk5978
@alexisk5978 Ай бұрын
THANK YOU!!!
@eruseicode
@eruseicode Жыл бұрын
That was so fun!
@iOSAcademy
@iOSAcademy Жыл бұрын
Thanks
@rishangprashnani4386
@rishangprashnani4386 Жыл бұрын
I have built an app and want to test it on my iphone. Do I need apple developer program for that?
@riribud
@riribud Жыл бұрын
did you figure anything out?
@rishangprashnani4386
@rishangprashnani4386 Жыл бұрын
@@riribud no you dont require. google it. its easy
@sainttiago012
@sainttiago012 11 ай бұрын
Thank you so much for this!
@rudedog979
@rudedog979 8 ай бұрын
Many thanks for your channel and videos...although only a year old, the xcode I downloaded today has some slightly diff options. but overall, great beginner video, just what I needed.
@Passion1111
@Passion1111 10 ай бұрын
Very good video thanks bruh
@iOSAcademy
@iOSAcademy 10 ай бұрын
Any time
@PorchiaDallas
@PorchiaDallas 8 ай бұрын
This video is for those who are familiar with code. Great video if you want to follow the leader.
@alexjiang1563
@alexjiang1563 11 ай бұрын
you can also hit the fn key to get emojis if you have it in settings
@inspirethecourage
@inspirethecourage 9 күн бұрын
OK super new guy here! I went and can NOT find Code in the ios store! Did they change the icon that contained the hammer on it? There not there! Please help.! Thank you!
@paidfadez
@paidfadez 9 ай бұрын
What computer are u using ?
@la.vibracion
@la.vibracion Жыл бұрын
incredible teacher
@nancyforcey7454
@nancyforcey7454 7 ай бұрын
Thank you!!
@edkfilms
@edkfilms 11 ай бұрын
Thanks for sharing this video
@kwamenadadson
@kwamenadadson Жыл бұрын
Thanks buddy
@FederikoKorili
@FederikoKorili Жыл бұрын
Thank you !
@iOSAcademy
@iOSAcademy Жыл бұрын
You're welcome!
@BrandonHall-rd2sp
@BrandonHall-rd2sp Жыл бұрын
Does this app work on mobile?
@AyoubErrbayeb
@AyoubErrbayeb 11 ай бұрын
cool video)
@garshalotfi834
@garshalotfi834 Жыл бұрын
Awesome tutorial!Big thanks to author
@AkbarshahJumanazarov
@AkbarshahJumanazarov 2 жыл бұрын
Thank you for your effort, this video was helpful!
@iOSAcademy
@iOSAcademy 2 жыл бұрын
Glad it was helpful!
@johnaew.1781
@johnaew.1781 11 ай бұрын
omg thankyouuuu!! but is there a way to install it onto an actual mobile device? or is the only option to try it out in the simulation mode?
@moshudoduwade219
@moshudoduwade219 Жыл бұрын
Many Thanks😎
@iOSAcademy
@iOSAcademy Жыл бұрын
You’re welcome
@SiennaCommare
@SiennaCommare 6 ай бұрын
How do you start a second page?
@glenn_r_frank_author
@glenn_r_frank_author 10 ай бұрын
Do you have another video that shows me how to export the app to run on my iphone or ipad? Do you HAVE to publish it to the apple app store to do this or is there a way to install it on a device without the app store?
@janice5083
@janice5083 10 ай бұрын
To run the app on your iPhone, you'll need a cable to connect your devices. I think you'll be able to run it for 14 days; after that, you'll either have to plug in your cables to install it again or join the Apple Developer Program, which costs approximately $99 per year.
@glenn_r_frank_author
@glenn_r_frank_author 10 ай бұрын
@@janice5083 Thanks.. so just the USB connection between the ipad or iphone and my laptop I guess? Yeah i just would like to see it actually running on the device before. I also thought the cost of the Apple Dev Program was more than that. Thanks.
@codestarrunner
@codestarrunner 10 ай бұрын
The current version of Swift won't work with the code in this video, it seems. Here's what works for me: import SwiftUI enum Emoji: String { case angel = "😇" case wavingHand = "👋" case flag = "⛳" case car = "🚘" static var allCases: [Emoji] { return [.angel, .wavingHand, .flag, .car] } } struct ContentView: View { @State var selection: Emoji = .angel var body: some View { NavigationView { VStack { Text(selection.rawValue) .font(.system(size: 150)) Picker("Select emoji", selection: $selection) { ForEach(Emoji.allCases, id: \.self) { emoji in Text(emoji.rawValue) } } .pickerStyle(.segmented) } .navigationTitle("Emoji Lovers!") .padding() } } } #Preview { ContentView() .modelContainer(for: Item.self, inMemory: true) }
@KEEVVY
@KEEVVY Ай бұрын
Hi do you have a video explaining how to monetize a app, I made my first game, I know I have to pay apple 99$/year just to upload it but now I found ads over app came from 3th party like google or unity, I also understand I will need to write a policy for the app if I use ads & even host it on a website, I don't really understand how the add will be integrated in app, I will need to modify my swift game code, how it's all this done, sounds more complicated than just making the app
@Meltdown_Gaming
@Meltdown_Gaming 5 ай бұрын
I've been programming for years now, but I'm new to swift. I still got lost in this beginners tutorial. you never explained some things that you did, such as the "." you added at 7:14
@glenn_r_frank_author
@glenn_r_frank_author 10 ай бұрын
So, because the title text is a "title" is that why it shows at the top in spite of the fact that the emoji and picker are above it in the code? Is there any reason that the NavigationTitle could not be in the code before the emoji code ... just for programmer sanity of remembering what order things are going to display on screen? or does it have to be in this order?
@faengelm
@faengelm Жыл бұрын
Well done. How do I make it run on my iPhone?
@iOSAcademy
@iOSAcademy Жыл бұрын
Thanks
@theplanechannel5522
@theplanechannel5522 7 ай бұрын
App name?
@allenclendenning3428
@allenclendenning3428 11 күн бұрын
I am getting an error that says enums must not contain stored properties
@cihanciftci08
@cihanciftci08 Жыл бұрын
thanks this examples.. i tried but why i taking this error "Cannot infer contextual base in reference to member 'segmented' i use macOs Cataline.Xcode 12.4
@Motawa88
@Motawa88 Жыл бұрын
for some reason Xcode is super slow on my m1 MacBook Air. Even VS runs better lol. The canvas /preview can't even load
@edwardmarno294
@edwardmarno294 Жыл бұрын
yours and mine both!
@BRad-mu6qr
@BRad-mu6qr Жыл бұрын
Thank you for sharing. Is there an app for the or is it just for the computer
@iOSAcademy
@iOSAcademy Жыл бұрын
The video shows how to build an actual app for it
@ytinfluenza5804
@ytinfluenza5804 Жыл бұрын
@@iOSAcademydo u have any app similar to this that can be made on Windows
@ytinfluenza5804
@ytinfluenza5804 Жыл бұрын
@@iOSAcademyalso after we make this app are we able to publish the app in App Store?
@OOAK-Ireland
@OOAK-Ireland Жыл бұрын
sorry but you are talking about all different sings such as dollar sign, the @ etc etc. what does it all do? this is just follow the leader, but you are not explaining why.
@ThePerfectBalls
@ThePerfectBalls Жыл бұрын
G-O-O-G-L-E
@CousinJimbob
@CousinJimbob 3 ай бұрын
That’s redundant to reply “google” to someone not understanding a video they likely googled to find. Lol I think learning how to learn is important but that was a valid criticism of this video.
@2goboyz
@2goboyz Жыл бұрын
Wow I was the 700th like
@jessicapdance
@jessicapdance Жыл бұрын
Hello I have a question -- for Picker part of your code I received this error "Accessing State's value outside of being installed on a View. This will result in a constant Binding of the initial value and will not update." but couldn't find anything on Stack Overflow. How can I resolve this issue?
@bihireboris3407
@bihireboris3407 6 ай бұрын
THO I like this, It Emphases on the output than what the views are, What is the NAvigationView, what space does it occupy on the screen, what are the multiple things can we do on those individual views?
@wuyanchu
@wuyanchu Жыл бұрын
brilliant tutorial, thx and god bless you and the world.. regards from hong kong ^_^
@HyperboreanJim861
@HyperboreanJim861 Жыл бұрын
Can I build the app from my android phone? I don't have a desktop or a laptop.
@LebenWerden
@LebenWerden 9 ай бұрын
If I execute print, I want the print output currently in the console to be cleared, and the new print output to appear there. It's annoying to click on the trash can icon every time. I haven't found anything in the settings.
@BunFrFr
@BunFrFr 5 ай бұрын
Anyway to do this without a Mac?
@BwnnyRxbbit
@BwnnyRxbbit Ай бұрын
just get a Mac. Windows sucks
@Slipee-me8bi
@Slipee-me8bi Жыл бұрын
Ty
@iOSAcademy
@iOSAcademy Жыл бұрын
Youre welcome
@RachelGatto
@RachelGatto Жыл бұрын
Do i have to have a mac? i dont see it in the microsoft store
@BwnnyRxbbit
@BwnnyRxbbit Ай бұрын
Yes or get a virtual Mac setup
@zabaizabai2
@zabaizabai2 2 жыл бұрын
But how to get the app in the store?
@iOSAcademy
@iOSAcademy 2 жыл бұрын
I have a dedicated video on this
@PaulTurley81
@PaulTurley81 2 жыл бұрын
kzbin.info/www/bejne/mKvCfH2ajd6fnpI on this video
@navneetmittal4809
@navneetmittal4809 Жыл бұрын
you made so easy to understand, Thank alot
@Girlsgirl03
@Girlsgirl03 Жыл бұрын
I have the best ever app idea ever I need to make it
@iOSAcademy
@iOSAcademy Жыл бұрын
Go for it!
@JeffWatters-w6f
@JeffWatters-w6f Жыл бұрын
I'm a C-programmer from way back. Barely recognized the code here. Nice work though. So I have the application, which is cool, but the goal is to get it on my phone. Where's that video?
@victorriurean
@victorriurean 2 жыл бұрын
gl learning everyone
@iOSAcademy
@iOSAcademy 2 жыл бұрын
Nice!
@zbz1536
@zbz1536 5 ай бұрын
this is feeling a lot like React. it wasn't like this when I did iOS dev 7 years ago lol
@KrzysztofBob
@KrzysztofBob 6 ай бұрын
Nothing like to hit a brick wall that quickly ... error: Value of type 'Emoji' has no member 'rawValue' ???
@GiorgiGvichiani-pw6ht
@GiorgiGvichiani-pw6ht 5 ай бұрын
same
@Rajenp0
@Rajenp0 4 ай бұрын
enum Emoji: String {...your emojis go here} You probably forgot to put 'String' in the declaration
@Victor-oy8bj
@Victor-oy8bj Жыл бұрын
how did you expand without moving mouse at 2:50??
@moshudoduwade219
@moshudoduwade219 Жыл бұрын
I built the app how do I put the app on my iPhone?
@iOSAcademy
@iOSAcademy Жыл бұрын
You can connect your phone to your computer & run to your iphone
@АлексейВолович-н7к
@АлексейВолович-н7к 8 ай бұрын
thise emoji enum doesn't work
@omotayojuliana6489
@omotayojuliana6489 11 ай бұрын
Please I want to learn a step by step process of creating an app this one is confusing me
@kuroshiromi
@kuroshiromi 10 ай бұрын
What if my computer doesnt support xcode?
@BwnnyRxbbit
@BwnnyRxbbit Ай бұрын
get a virtual Mac setup
@its0300
@its0300 Жыл бұрын
reminds me a lot of Jetpack Compose
@iOSAcademy
@iOSAcademy Жыл бұрын
Its very similar
@WoolleyWoolf
@WoolleyWoolf 8 ай бұрын
And after building such simple it effective apps, make sure to have unethical super high subscription pay walls for users - it’s a joke.
@nateblanch5045
@nateblanch5045 4 ай бұрын
I mean Tbf devs deserve money for their work but yeah I agree. a lot of apps have ridiculous prices lol
@WoolleyWoolf
@WoolleyWoolf 4 ай бұрын
@@nateblanch5045 id rather choose microsoft 365 annual subscription at $150 than an indie printer app for $150 annual lol. So dumb.
@brmixes_
@brmixes_ Жыл бұрын
bro can you do one for a voice recording app
@iOSAcademy
@iOSAcademy Жыл бұрын
Sure
@brmixes_
@brmixes_ Жыл бұрын
@@iOSAcademy sweeeeeet!!
@robert06052
@robert06052 Жыл бұрын
How come there is no swift controller file?
@iOSAcademy
@iOSAcademy Жыл бұрын
Bc this SwiftUI which is a different ui framework
@robert06052
@robert06052 Жыл бұрын
@@iOSAcademy Thanks for your response. How do I change the framework?
@blenxoid
@blenxoid Жыл бұрын
Can I download Xcode on windows?
@spacetime883
@spacetime883 6 ай бұрын
short answer is no
@WoolleyWoolf
@WoolleyWoolf 8 ай бұрын
Don’t worry about the jargon. It’s best to open the stuff up, do each 1 by 1 like a cooking recipe, then voila! Doing all in 1 go after watching the whole cooking video will be like 😮
@iceshadow625
@iceshadow625 Жыл бұрын
Wow Swift is a very bizarre language. I’ve worked with C++, Java, JavaScript, PHP, and SQL and parts of it look like it wants to combine JavaScript with PHP. But the no ; at the end of each line is really messing with me.
@vuxj5
@vuxj5 5 ай бұрын
“For beginners” Me after 3 mins: you lost me
@jamiem7740
@jamiem7740 Жыл бұрын
i just saw your video it almost seems easy enough for a kid do this, what i would like to do for myself is to build a app with contents for fantasy football
@edcastle9821
@edcastle9821 Жыл бұрын
I will have to watch it more than once...I got lost :(
@iOSAcademy
@iOSAcademy Жыл бұрын
You can do it
@RobertFixit
@RobertFixit 10 ай бұрын
Let me see if I can make something based on this video alone. I will update.
@DeclanLawrie
@DeclanLawrie 4 ай бұрын
Wow
@harsimarsingh8956
@harsimarsingh8956 9 ай бұрын
Rick and morty supremacy
@manishah92
@manishah92 2 жыл бұрын
❤❤
@iOSAcademy
@iOSAcademy 2 жыл бұрын
thanks
@MissssMegan
@MissssMegan Жыл бұрын
But what if you do not know how to code?
@iOSAcademy
@iOSAcademy Жыл бұрын
I've got tons of videos to teach you :)
@jayblack8691
@jayblack8691 Жыл бұрын
Doesn’t work on code Mac studio
@iOSAcademy
@iOSAcademy Жыл бұрын
Should work. What doesnt work
@awesomerandomness3307
@awesomerandomness3307 Жыл бұрын
@@iOSAcademy Dang dude ur a GOAT, for even responding.
@teo_d_david
@teo_d_david 11 ай бұрын
When i manage to buy my first mac, this will be my first app. Thank you so much! 🎉🥳
@andreaderrico9916
@andreaderrico9916 Жыл бұрын
may I ask, using XCode or however is called, can I change the language like from the default from html CSS and js, it's the first time I've tried to make an app and especially for iPhone I don't know how it works and I already have the "application" ready as a website but it was written using html, CSS and Js. Or maybe you know a converter where i can put my html code and it change in a XCode i dont know
@iOSAcademy
@iOSAcademy Жыл бұрын
No. You need to use swift
@HyperAnimated
@HyperAnimated Жыл бұрын
Dec. 2023 - So you don't have to dig in the comment replies - anyone hitting the "Consecutive declarations on a line must be separated by ';'" error when entering emojis, just change the emojis. They apparently don't have to be exactly what the creator entered, after fixing the first three, my fourth was a ninja and the error cleared.
@iOSAcademy
@iOSAcademy Жыл бұрын
Correct
@sushantneopaney9157
@sushantneopaney9157 4 ай бұрын
The first thing I thought of when I saw this was that you were a little girl and I was like oh my gosh I love you so much and I love you so much and I love you so much and I love you so much and I love you so much and I can’t wait to see you soon I love you so 12:20 12:27 12:28 12:28 12:28 12:28 12:28 12:29 12:29 12:29 12:29 12:29 12:29 12:29 and I’m going home now and I’m so happy I hope you’re doing good and I’m
@tarekozz
@tarekozz 10 ай бұрын
It feels so much pain I'm a LUA, HTML, CSS Developper but this thing oh brother it's going to be a pain to learn
@Eneergy
@Eneergy 10 ай бұрын
can the app creator know when we put our data or our photos or it is stored in some secret server please reply bro❤
@sparklemoss1027
@sparklemoss1027 Жыл бұрын
Not sure why you put beginner in it lol. 🎉
@manzg1
@manzg1 Жыл бұрын
Maybe u dumb lol 🎉
@AuraeRecords
@AuraeRecords Жыл бұрын
I am so lost
@ggunlistedarchive969
@ggunlistedarchive969 Жыл бұрын
because it is
@Jo4sh12
@Jo4sh12 Жыл бұрын
I could not imagine a simpler app…
@UncensoredCowboy
@UncensoredCowboy 10 ай бұрын
It’s a beginner app, but not a beginner course. You would need someone that walks you through the very basics of coding and how coding is formatted so you understand why and what is being done.
@MUSHIN_888
@MUSHIN_888 10 ай бұрын
im not a beginner programmer but this looks so damn complicated
@iOSAcademy
@iOSAcademy 10 ай бұрын
It gets easier with practice
@Rooster411
@Rooster411 Жыл бұрын
Have the alt Ę
@Deenandmrgregs
@Deenandmrgregs Ай бұрын
💑
I Made an iOS App in MINUTES with This AI Tool!
13:20
Creator Magic
Рет қаралды 626 М.
Learn the Essentials of Swift in one hour
58:14
Paul Hudson
Рет қаралды 212 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
How I Built It: $40K/Month iPhone App
17:02
Starter Story
Рет қаралды 696 М.
How to Make an App in 8 Days (2024) - Full Walkthrough
3:00:49
CodeWithChris
Рет қаралды 969 М.
Introduction to SwiftData - iOS Development
12:51
iOS Academy
Рет қаралды 11 М.
Coding a FULL App with AI (You Won't Believe This)
15:19
Creator Magic
Рет қаралды 373 М.
The LIES That Make Your Tech ACTUALLY Work
11:29
Enrico Tartarotti
Рет қаралды 1 МЛН
How to Make an App - Lesson 1 (2024 / SwiftUI)
27:21
CodeWithChris
Рет қаралды 470 М.
How Senior Programmers ACTUALLY Write Code
13:37
Thriving Technologist
Рет қаралды 1,6 МЛН
Building a Mobile App in 2025: The BEST Technologies
13:31
Dan Ilies
Рет қаралды 132 М.
The Complete App Development Roadmap
7:52
Programming with Mosh
Рет қаралды 480 М.
How to Make an App - Lesson 1 (Xcode 16 Updated)
27:21
CodeWithChris
Рет қаралды 13 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН