I used this library in a project, and I realized that viewControllers that presented by Jelly, will NOT deinitialized!
I just added this, to Example project of the library:
// DismissMeController.swift
class DismissMeController: UIViewController {
deinit {
print("DismissMeController.Deinit?!")
}
...
}
the message is NOT printing after dismissing viewController.
I used this library in a project, and I realized that viewControllers that presented by Jelly, will NOT deinitialized!
I just added this, to Example project of the library:
the message is NOT printing after dismissing viewController.