これはiPhoneのフォトライブラリから画像を選択する方法を、よく知られたスニペットですなぜ私にはわからない。ここでiPhoneコードリークと
- (IBAction)selectExistingPicture {
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:picker animated:YES];
[picker release];
}
}
あなたが楽器のスクリーンショット(fullscreen)を見ることができます。
alt text http://img.skitch.com/20090624-rtqp2mgsnyynkgb97c9e8d2g9c.jpg
なぜそれが漏れていますか?私はそれを理解していない、ピッカーは適切にリリースされるので、私は思う。
よろしくお願いいたします。奇妙なことに、Appleはリークのためにアプリケーションを拒否しますが、リーク自体を生成します。 – Stefan