gpt4 book ai didi

ios - 如何从 Xamarin.ios 中的库中选择图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:56:32 24 4
gpt4 key购买 nike

我想从 Gallery 加载图像并将其显示在 UIImageView 上。

我尝试像 Xamarin Recipes 中的示例那样进行操作,但我得到的只是空值。

https://developer.xamarin.com/recipes/ios/media/video_and_photos/choose_a_photo_from_the_gallery/

到目前为止我的代码:

public partial class ViewController : UIViewController
{
UIImagePickerController imagePicker;
UIButton choosePhotoButton;
UIImageView imageView;

public ViewController(IntPtr handle) : base(handle)
{
}

public ViewController()
{
}

public override void ViewDidLoad()
{
base.ViewDidLoad();
Title = "Wähle Bild aus:";
View.BackgroundColor = UIColor.White;

imageView = new UIImageView(new CGRect(10, 150, 300, 300));
Add(imageView);

choosePhotoButton = UIButton.FromType(UIButtonType.RoundedRect);
choosePhotoButton.Frame = new CGRect(10, 80, 100, 40);
choosePhotoButton.SetTitle("Picker", UIControlState.Normal);
choosePhotoButton.TouchUpInside += (s, e) =>
{
imagePicker = new UIImagePickerController();

imagePicker.SourceType = UIImagePickerControllerSourceType.PhotoLibrary;
imagePicker.MediaTypes = UIImagePickerController.AvailableMediaTypes(UIImagePickerControllerSourceType.PhotoLibrary);

imagePicker.FinishedPickingMedia += Handle_FinishedPickingMedia;
imagePicker.Canceled += Handle_Canceled;

NavigationController.PresentModalViewController(imagePicker, true);

};

View.Add(choosePhotoButton);

}


private void Handle_Canceled(object sender, EventArgs e)
{
imagePicker.DismissModalViewController(true);
}

protected void Handle_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)
{
bool isImage = false;
switch (e.Info[UIImagePickerController.MediaType].ToString())
{
case "public.image":
Console.WriteLine("Image selected");
isImage = true;
break;
case "public.video":
Console.WriteLine("Video selected");
break;
}

// get common info (shared between images and video)
NSUrl referenceURL = e.Info[new NSString("UIImagePickerControllerReferenceUrl")] as NSUrl;
if (referenceURL != null)
Console.WriteLine("Url:" + referenceURL.ToString());

// if it was an image, get the other image info
if (isImage)
{
// get the original image
UIImage originalImage = e.Info[UIImagePickerController.OriginalImage] as UIImage;
if (originalImage != null)
{
// do something with the image
imageView.Image = originalImage; // display
}

UIImage editedImage = e.Info[UIImagePickerController.EditedImage] as UIImage;
if (editedImage != null)
{
// do something with the image
Console.WriteLine("got the edited image");
imageView.Image = editedImage;
}
}

// dismiss the picker
imagePicker.DismissModalViewController(true);
}

我在这一行得到空值:NavigationController.PresentModalViewController(imagePicker, true);

我做错了什么?

最佳答案

您似乎没有使用 UINavigationController,因此更改:

NavigationController.PresentModalViewController(imagePicker, true);

收件人:

PresentModalViewController(imagePicker, true);

注意:PresentModalViewController 自 ios6 以来已弃用,因此您可以更改代码以使用:

PresentViewControllerAsync(imagePicker, true);

或者:

PresentViewController(imagePicker, true, () => {
});

关于ios - 如何从 Xamarin.ios 中的库中选择图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38476030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com