Dysprosium

master

Deallocation helper for runtime objects
e-sites/Dysprosium

Dysprosium

Dysprosium is part of the E-sites iOS Suite.


Deallocation helper for runtime objects.
This library is pure for debugging purposes.

forthebadge forthebadge

Travis-ci

Installation

##Swift PM

package.swift dependency:

.package(url: "https://github.com/e-sites/dysprosium.git", from: "6.0.0"),

and to your application/library target, add "Dysprosium" to your dependencies, e.g. like this:

.target(name: "BestExampleApp", dependencies: ["Dysprosium", "DysprosiumLogger"]),

Implementation

// AppDelegate


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // ...
    
    Dysprosium.shared.onDealloc { objects in 
        print("[INFO] Deallocated objects: \(objects)")
    }
    
    Dysprosium.shared.onExpectedDeallocation { object, message in 
        print("[WARNING] Expected deallocation of \(object): \(message)")
    }
}

Log deallocations

This way you can easily see what objects have been deallocated.

import Dysprosium

class SomeObject: DysprosiumCompatible {
    // ...
    
    deinit {
        deallocated()
    }
}

Expect deallocations

UIViewController

Most of the time when a UIViewController disappears it should be deallocated.
With expectDeallocation() you can monitor if it actually is deallocated.

import Dysprosium

class SomeViewController: UIViewController, DysprosiumCompatible {
    // ...
    
    override func viewDidDisappear(_ animated: Bool) {
        super.viewDidDisappear(animated)
        expectDeallocation()
    }
    
    deinit {
        deallocated()
    }
}

Related objects

If an object gets deallocated, but you need to check that an underlying object is deallocated as well:

import Dysprosium

class SomeObject: DysprosiumCompatible {
    // ...
    
    let relatedObject: SomeObject

    deinit {
        relatedObject.expectDeallocation()
        deallocated()
    }
}

Release builds

Disable Dysprosium like this:

Dysprosium.shared.isEnabled = false

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

Last updated: Wed Apr 03 2024 00:46:25 GMT-0900 (Hawaii-Aleutian Daylight Time)