iOSPicturePicker in an iOSScrollableArea

I have a view “ViewDetails” it contains an iOSScrollableArea “ScrollableArea1”. The content of this iOSScrollableArea is a container “ContDetails”. This container has an iOSImageView and an iOSPicturePicker.

A button action on this container is not working
Sub Action() Handles Action
PicturePicker1.Source = iOSPicturePicker.Sources.PhotoLibrary
PicturePicker1.Show(self)
End Sub

What must I do that this iOSPicturePicker is working?

I believe that the error here is “self” which isn’t an iOSView but a container.

Try setting a weakref property to the iOSView in the container, and use that weakref in place of “self”