1

私はiphone sdkの新機能で、imagepicker.tag = vaule(100)を設定するとエラーが発生するので、誰かがこの問題を解決するのを手伝ってくれます

   `  imagepicker=[[UIImagePickerController alloc]init];
    imagepicker.delegate=self;
    imagepicker.sourceType=UIImagePickerControllerSourceTypePhotoLibrary;
    [self presentModalViewController:imagepicker animated:YES];`
4

2 に答える 2

3
imagepicker=[[UIImagePickerController alloc]init];
imagepicker.sourceType=UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagepicker animated:YES];
imagepicker.view.tag = 100;
于 2012-06-13T10:28:41.090 に答える
2

tagのプロパティですUIViewUIImagePickerControllerのサブクラスですUIViewControllertagプロパティはありません。

于 2012-06-13T10:22:32.417 に答える