Here's the ULTIMATE tip to find memory leaks in Xcode!

Поделиться
HTML-код
  • Опубликовано: 28 мар 2022
  • #iOS #swift #softwaredeveloper #iosdeveloper
    Thank you for watching this video 🙌
    ➜ Leave a tip: www.buymeacoffee.com/v.pradei...
    ➜ Website: www.swiftwithvincent.com
    ➜ Twitter: / v_pradeilles
    ➜ GitHub: github.com/vincent-pradeilles/
    ➜ LinkedIn: / vincentpradeilles
  • НаукаНаука

Комментарии • 32

  • @v_pradeilles
    @v_pradeilles  2 года назад +12

    Did you find this tip useful? Are you already using it in your apps? Let me know in the comments 🚀

  • @bravehearted1010
    @bravehearted1010 Год назад

    Very useful tip. Thanks a lot!

  • @richardrubin2192
    @richardrubin2192 Год назад

    Merci, Vincent! Great tip!

  • @poluxsaurus1454
    @poluxsaurus1454 2 года назад +2

    Yup it's useful. What I do to look for memory leaks is, instead of launching Instruments, I pause the app with the memory debugger and look at the number of instances for each class, not just the view controllers. It's easy to spot when there are more than expected. Sometimes the expectation may be wrong and there is a good reason for some instances to be alive, so it also helps me understand what the app does in case I've forgotten of some design decision.

    • @jack666hack
      @jack666hack 2 года назад

      This could work for a small app but big ass app is a headache

  • @jack666hack
    @jack666hack 2 года назад +1

    Love the tutorials buddy 🔥

  • @shalinibhat2339
    @shalinibhat2339 2 года назад +1

    Thank you for this amazing video

  • @alexcupra9682
    @alexcupra9682 2 года назад

    Amazing trick! Thanks :)

  • @mykytakhlamov
    @mykytakhlamov Год назад

    another interesting feature I learned from you, thanks💥

  • @natgenesis5038
    @natgenesis5038 День назад

    Thanks so much

  • @Mani-xx4fz
    @Mani-xx4fz 2 года назад

    Nice trick! Thx 👌

  • @mistymu8154
    @mistymu8154 2 года назад +2

    I always put a log statement in the deinit of all my ViewControllers and ViewModels and any other classes that shouldn't be hanging around. For example, there is one scenario for an app I work in that pushes about 5 screens deep and then on the final screen there is a button to pop to root, so I check that I see logs for the deinit of all 5 of those screens and corresponding view models. It would be difficult to listen out for 10 different bloops and find the offending class if there was less than 10 bloops lol.

  • @michaelbrown
    @michaelbrown 2 года назад +2

    Similarly I usually will have base classes (BaseViewController that contains common items) and will have dealloc (objc) or deinit (swift) methods and just wrap a print statement saying self.description + “ deallocated” in an if debug check. It helps if you’re a breakpoint hoarder like myself. 😂

  • @Jaroshevskii
    @Jaroshevskii Год назад

    You amazing, thanks very much ☺️

  • @vaibhavbansod3528
    @vaibhavbansod3528 2 месяца назад

    There would be dancing music if we put symbolic breakpoint in a call where multiple instances are created and only few of them are released

  • @rahuljamba5846
    @rahuljamba5846 Год назад

    Great man

  • @marekszymanski2375
    @marekszymanski2375 2 года назад

    This trick always amazes me, great video!
    Is it possible to do something similar for SwiftUI? I guess everything is a View so it might be hard (and loud 😂)

    • @mistymu8154
      @mistymu8154 2 года назад +3

      SwiftUI views are structs so they won't have a retain cycle. You should keep an eye on view models though.

  • @alexandergavrilov8019
    @alexandergavrilov8019 2 года назад +1

    great!

  • @shilpagade1913
    @shilpagade1913 Год назад

    In very big code how we identify which object is cause of memory leak. Is thr any way to find it?

  • @byaruhaf
    @byaruhaf 2 года назад +2

    Thanks, i use this breakpoint as well except instead of sound I use the action log message to consol with "--- dealloc @(id)[$arg1 description]@ @(id)[$arg1 title]@"

  • @rasheshbosamiya1482
    @rasheshbosamiya1482 2 года назад +1

    what about Model & ViewModel classes? can we monitor dealloc for those custom classes?

    • @rasheshbosamiya1482
      @rasheshbosamiya1482 2 года назад

      @hydro1337x thank you for reply, I have tested and it works with custom classes (e.g. Model, ViewModel etc)

  • @mohammadmnasrabadi6837
    @mohammadmnasrabadi6837 2 года назад

    This is not my choice. Because the problem is with all the references and you only understand the controls. Of course, the sound is not good and can be printed with the following code, which shows its efficiency in deleting several pages at the same time. . in symbol : use the action log message to consol with "--- dealloc @(id)[$arg1 description]@ @(id)[$arg1 title]@"

  • @user-jl8xe2df4d
    @user-jl8xe2df4d Год назад

    Just like in WWDC

  • @AnLaXGaminG
    @AnLaXGaminG 2 года назад

    Why that clousure make a memory leak? I know that there is no weak self but I dont get the point why that happens :( thanks

    • @addisonfrancisco9007
      @addisonfrancisco9007 2 года назад +2

      The closure is causing an increase to the reference count because it is capturing self. So, ARC is not going to clean up that view controller during dealloc because the ref count is greater than 0.
      You can read more about it here under “Strong Reference Cycles for Closures”
      docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html

    • @abymathew575
      @abymathew575 2 года назад

      ruclips.net/video/GIy-qnGLpHU/видео.html I think this video will give your more details about it. Please check this

  • @followerOfJesus723
    @followerOfJesus723 Год назад

    This is so not working.

  • @rickywitherspoon2861
    @rickywitherspoon2861 2 года назад

    🤯

  • @alexeykhomych1743
    @alexeykhomych1743 2 года назад

    it's waste of time for 2 reasons: too hard to understand and it doesn't always work well.