Reputation: 691
I am trying to use Xamarin in VisualStudio for developing iOS application. I added manual Segue in StoryBoard, selected show segue. But then I see it null.Following image:
How can we fix it?
Upvotes: 1
Views: 1370
Reputation: 1027
This has been fixed in Xamarin 4.3.0.237 (alpha)
To update go to Tools > Options > Xamarin > Other > and change to alpha to download
Remember to also update Xamarin on Mac for it to work
Upvotes: 2
Reputation: 38
Seems like this is a bug in Xamarin. Its already reported over here: Link to Bugzilla
Upvotes: 2
Reputation: 208
I'm getting the same problems. I've been fixing it by manually opening up the storyboard file and modifying the xml, adding in the anchor.
<segue id="4154" destination="4110" kind="popover" popoverAnchorView="1904">
<popoverArrowDirection key="popoverArrowDirection" up="YES" down="YES" left="YES" right="YES"/>
</segue>
Upvotes: 2