ahmetardal / SSCheckBoxView

SSCheckBoxView is a check box UI control for iOS apps.
Apache License 2.0
235 stars 64 forks source link

leak memory #5

Open lexuanquynh opened 2 years ago

lexuanquynh commented 2 years ago

In SSCheckBoxView.h: Leak here:

id<NSObject> delegate;

need change to:

__weak id<NSObject> delegate;
ahmetardal commented 2 years ago

@lexuanquynh Thanks. Would you like to send a PR? I'd be more than happy to merge.