DEV Community

Cover image for Using Xcode's memory graph to find memory leaks

Using Xcode's memory graph to find memory leaks

Donny Wals on December 10, 2019

There are many reasons for code to function suboptimally. In a post, I have shown you how to use the Time Profiler to measure the time spent in eac...
Collapse
 
kesprit profile image
kesprit

Thank you for this blog post, I will share it to my junior developers colleagues πŸ˜›

Collapse
 
myerschris78 profile image
Chris Myers

Is there any difference between marking the protocol as DataDelegate: AnyObject vs. DataDelegate: class ?

Collapse
 
donnywals profile image
Donny Wals

Functionally there isn’t but AnyObject is the preferred way since class is considered deprecated forums.swift.org/t/class-only-prot...