ฉันใช้รหัสต่อไปนี้สำหรับเครื่องมือเลือกรูปภาพ แต่เมื่อฉันเรียกใช้ในโปรแกรมจำลองฉันมีหน่วยความจำรั่วและได้รับคำเตือนเกี่ยวกับpresentModalViewcontroller:animated
การเลิกใช้งานใน iOS6 ฉันยังdismissModalViewController:animated
เลิกใช้งาน ฉันใช้ SDK 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];
}