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
UIView
subclass to contain your line drawing so you can apply constraints and align it to the other Views.In a
UIView
subclass, override theDraw
method:Re: I've been using dotted-line technique for awhile, it is from this SO Answer
In combining this
View
with the answer from this SO question, you can create: