Hi Pallav, thanks for explaining runloop, i was struggling to understand it & now I have some idea about it.
@aird18933 жыл бұрын
Thank you so much for the amazing short video, it gave me a proper detail to debugging as well
@lingeswarankandasamy76152 жыл бұрын
Hey Pallav I really like your teaching style and depth contents expecting more
@rahuljamba58462 жыл бұрын
Great Pallav , Keep it up
@player988982 жыл бұрын
Hey, Pallav.I really appearciate your efforts. Your videos are really helpful. I can see from last 4 months there is no new video. Please keep uploading the videos.My request is if possible, Please make one more video on App side system design and Low level design.
@sreelashsasikumar3540 Жыл бұрын
Hi Pallav, thanks for your videos those are really helping to easily understand the concepts with in a few minutes. Great work. I do have a query that isn't @Published works only with SwiftUI, which was not getting observed with UIKit.
@rakeshmahato53262 жыл бұрын
Pallav, why @observedObject is not used as property wrapper for viewModel instance in your example and ViewModel class is not extending to ObservableObject protocol ?
@pvj892 жыл бұрын
Hi Pallav, I have question can you please tell me how optional is implemented in swift? It was interview question.
@im_the_raymond2 жыл бұрын
Hi Teacher.. I have a question: How can i execute a swift script or a swift line? Such as in python if I want to execute a python script or a python line i write: exec(“print(‘hello’)”) Please Help me 🙏🤍.
@barnaliroy32562 жыл бұрын
Can you please make one video related to background operations which will cover the topic OperationQueue and GCD. Thanks for all the video. its really helpful for me.
@JunaidKhan-ny8tu3 жыл бұрын
Kya bat hy yar ❤️
@karthickchandran98992 жыл бұрын
Any chance we get a video on RxSwift too?
@pushpabisht48502 жыл бұрын
Good one 👍
@swapnalikulkarni14722 жыл бұрын
Hi Can you create a video on higher order functions
@AmanKumar-tb8nt3 жыл бұрын
Nice 👍
@malleshaholeyache44642 жыл бұрын
Hi brother. May i ask why are you not posting any videos on your channel since last 5 months? Most of us eagerly waiting for your videos brother. Please do videos on iOS app development. Please guide us with your great knowledge by your astonishing explanation 😊🙂
@iCode_Happy_Coding2 жыл бұрын
Thanks for the kind words Mallesha. I’m working on something which is going to be very useful for most of the developers (beginner/intermediate). It’s a series of videos (on same topic) and most of it is done. Will try to release it by end of this month 🙂
@yannic83442 жыл бұрын
I don't think this is a proper solution to the problem as these schedulers dispatch work asynchronously to some time in the future. The real solution would be to use the parameter emitted by the observer which is omitted by the '_' in line 24. By using the publisher's emitted value we would decouple the view controller more from the view model since the table view data sources methods wouldn't reference the view model anymore. This is even the suggested solution by the guy which is referenced in the video description(avanderlee). It's easy to find the proper solution on his blog. @iCode: Maybe you should be doing a follow up video talking about this.