I tried UIAlertView and UIActionSheet objects that causes memory leak in iOS8.4 SDK. New objects that coming from iOS8 (such as UIAlertController) that supports minimum iOS8 OS. How can handle this leak with iOS8 and before releases?
Example code piece that causes leak;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@""
message:@""
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];