Dotted or dashed line in iOS?

Just a quick question on an iOS Line: is it possible to make it dotted or dashed? Thank you!

Yes, using a canvas and a for next in paint to draw lines with steps.

or perhaps investigate using the proper declare to invoke

CGContextSetLineDash(context, 0.0, dashes, dashes.count)

[quote=472830:@Dave S]or perhaps investigate using the proper declare to invoke

CGContextSetLineDash(context, 0.0, dashes, dashes.count) [/quote]

Until Xojo implements the whimsical interops, declares are for most users as pleasant as a root canal :confused:

I do hope it won’t be the same song and dance under Android to get the simplest features, as it has been for iOS til today.

Thanks. Both suggestions work!