I'm Struggling to insert a dotted line between buttons similar to a GridView with buttons.
Is there anything predefined in the API given by the IOS for Xamarin that solves this?
Thanks in advance
I'm Struggling to insert a dotted line between buttons similar to a GridView with buttons.
Is there anything predefined in the API given by the IOS for Xamarin that solves this?
Thanks in advance
Use a
UIViewsubclass to contain your line drawing so you can apply constraints and align it to the other Views.In a
UIViewsubclass, override theDrawmethod:Re: I've been using dotted-line technique for awhile, it is from this SO Answer
In combining this
Viewwith the answer from this SO question, you can create: