thanks a lot for sharing this video . I understood clearly.
@lesage3204 ай бұрын
Finally!! This video is so far the best one I've come accross. CodePro makes it look so easy. In 16 min I've learned a whole lot.
@gdfg8269 ай бұрын
Thank you very much. That was really helpful!
@GoeHybrid Жыл бұрын
Why did you programmatically navigated from the login screen to the tab bar controller instead of using the storyboard?
@chen3969 Жыл бұрын
Great tutorial video. Very helpful. Thanks you so much.
@ryangaudet357 Жыл бұрын
Great video! Perfect amount of basic info to get started with Animation. I love your teaching style and pace.
@subysukumaran3803 Жыл бұрын
Is it possible to mock the core data?
@vebbis5961 Жыл бұрын
Really good video. Thank you!
@buggerMan28 Жыл бұрын
Great tutorial.
@SwiftDeveloperWorld Жыл бұрын
Pretty. Awsome , thank you
@devennahata6721 Жыл бұрын
how does this differ from making requests from the watch using alamofire
@anhhanry7167 Жыл бұрын
i've just discovered this video and after watched it , I think there's a missing piece of information for the topic to be complete, so here is my suggestion: please , if you could, make a video that show how to update the app once the app was approved. For example, if the database ( that the app relies on to perform ) needs to be update , says every month, how to do that in the app connect etc.. showing which place to get into , click what , do what etc... to update and reupload the new version.
@remy- Жыл бұрын
Very helpful.
@TuanLe-fd4xw Жыл бұрын
Thank you
@voronovski Жыл бұрын
thanks! you help me to understand the basics about Collection View
@problem.solver2 жыл бұрын
This is. a very fine video that saves loads of time. Thank you.
@RajrkSunny2 жыл бұрын
This is the 6th or 7th Video I'm watching and this by far the best explanation....
@abdullahmohammaddaihan77532 жыл бұрын
Thanks code pro
@luckcfm2 жыл бұрын
Great video. Thanks!
@swiftcode88792 жыл бұрын
Відео для українців на тему пошуку kzbin.info/www/bejne/iWLCo6N-ht5jbNk
@hermdetector2 жыл бұрын
Hello Code Pro, I very new to this coding. So I"m getting stuck on these optionals also and I thought this little exercise might help me. Here's a little code that I was trying learn when a textfield hasn't any text. import UIKit class ViewController: UIViewController { @IBOutlet weak var textLabel: UILabel! @IBOutlet weak var textField: UITextField! @IBOutlet weak var button: UIButton! var text = String() @IBAction func buttonPressed(_ sender: UIButton) { text = String(textField.text!) textLabel.text = text if textField != nil { textLabel.text = text } else { textLabel.text = "0" textField.text = "0" } } } When running code and entering numbers in textfield the label will show the right numbers. But when I don't enter anything in textfield both label and textfield remain empty. The good thing is its not crashing. Any help would be awesome if you have the time, thank you.
@abdullabardiyev2992 жыл бұрын
2:36 second which button pressed?
@AliMuhammedSOYLU Жыл бұрын
You can press the Esc key. Type SHIFT Z Z to save and exit. Type SHIFT Z Q to exit without saving.
@dimitardimitrov78682 жыл бұрын
This tutorial deserves to take a LIKE because it's one of the less well-explained what DI is.
@IhorFedii-n1i2 жыл бұрын
awesome tutorial! clear presentation
@randomthinkingindividual2 жыл бұрын
thank you so much, helped a lot!
@Stricken1742 жыл бұрын
It's OK with labels, or text views, but what if have custom views on top of the content view? Like most social apps have.
@majidbashir17972 жыл бұрын
super handy..
@favioropa1792 жыл бұрын
Hi folk, is possible add sharpness and contrast control in an app camera?
@shivamagrawal63802 жыл бұрын
Thanks so much for such a great content
@DhavalHNena2 жыл бұрын
So helpful, thank you!
@michaelrozenblat21602 жыл бұрын
What happens if you want your swift code be exposed to obj file inside framework BUT u dont want to expose this code to the app?
@pramodgodishala79662 жыл бұрын
is it possible to create alias domain in the place of IP address and localhost
@marekfudali11412 жыл бұрын
Thank you 🙂
@TomtheMagician212 жыл бұрын
Wow thank you, I've just decided to start learning C++ after python and some C# from unity and it doesn't seem very nice
@josemv32 жыл бұрын
What a great lesson. Easy, very well explained, awesome! Thank you!
@wilsonnarea53782 жыл бұрын
Seems like this is very outdated, you should consider removing this or fixing it.
@AyhanHakanTekin2 жыл бұрын
hey nice tutorial for stoaryboard referance but i have question for you if you reply i am happy it. when you push to storyboard referance tab bar still showing but how to hide it alternatively tabbar.ishidden is useable but not good visualty there is other way you know ?
@Goshawaf2 жыл бұрын
Thanks for the video! I have a question: are there any benefits of using resignFirstResponder() over .endediting(true)? Why did you use both of them in different places here? I googled it but didn't get the difference unfortunately.
@polinavetrova55742 жыл бұрын
Thank you so much, it was very helpful for me!
@indracahyadi47572 жыл бұрын
This is very helpful!
@borjinator2 жыл бұрын
great video, thanks a ton!
@Bandhunt2 жыл бұрын
useless
@andrewkestler90782 жыл бұрын
DARK MODE
@buendiaoma2 жыл бұрын
Hello buddy, thanks a lot for that video, it has everything I needed for. It's possible to have that code for practice?
@shellybocknite60012 жыл бұрын
Can you help us apply for getting an app on apple store and Google play
@sushantsingh83852 жыл бұрын
Thanks for the video it helped me a lot
@MrIMacro2 жыл бұрын
Amazing, for the the text views, I use a vertical stack view because it is easier to align, easier to adjust constraints and runs perfect on all screen sizes. Thanks again.
@mecdos2 жыл бұрын
this was very helpful. every other tutorial goes over this pattern with viewcontrollers which i don't find as helpful
@satyamurty17582 жыл бұрын
Push controller is not working. i am using xcode 13.2.1. i got the exception in this line of code" tableView.setNumberOfRows(tableData.count, withRowType: "RowController") "