UIDeviceRGBColor からのリークがあります。担当フレームは +[UIColor allocWithZone:] です。私はARCを使用していません。
リークは以下の方法から来ています。
- (void) lAction
{
MKCoordinateRegion mapRegion;
mapRegion.center = mapView.userLocation.coordinate;
mapRegion.span.latitudeDelta = 0.05;
mapRegion.span.longitudeDelta = 0.05;
[mapView setRegion:mapRegion animated: YES];
SettingsViewController *settingsViewController = [[SettingsViewController alloc]
initWithNibName:@"SettingsViewController" bundle:nil];
リークは次の行から発生しています。
[self presentModalViewController: settingsViewController animated:YES];
次に、メソッドは次のように終了します。
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:40.0/255.0
green:43.0/255.0 blue:46.0/255.0 alpha:1.0];
}
誰でもこれを修正する方法を知っていますか? 皆さん、ありがとうございました!