InAppSettingsKit
InAppSettingsKit copied to clipboard
IASKAppSettingsViewController delegate is unsafely retained
In line 227 of IASKAppSettingsViewController.h
we have the following declaration:
@property (nonatomic, assign) IBOutlet id<IASKSettingsDelegate> delegate;
This causes the delegate
reference to be unowned, which can lead to a crash when the view disappears. It should be changed to weak
.