मैं एक छवि पिकर के लिए निम्न कोड का उपयोग कर रहा हूं। लेकिन जब मैं इसे सिम्युलेटर में चलाता हूं, तो मेरे पास स्मृति रिसाव होता है और मुझे presentModalViewcontroller:animated
iOS6 में पदावनत होने के बारे में चेतावनी मिलती है । मैं भी dismissModalViewController:animated
पदावनत हो जाता हूं । मैं एसडीके 6.1 का उपयोग कर रहा हूं।
ImagePicker के लिए कोड:
- (void)showAlbum:(id)sender {
imagePicker=[[UIImagePickerController alloc]init];
imagePicker.delegate = self;
imagePicker.allowsEditing =NO;
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagePicker animated:YES];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{
//release picker
[picker dismissModalViewControllerAnimated:YES];
}