I'm trying to draw an E shaped thingy and as far as I know there are 2 ways to go one of them being path.
I could draw with path as the below documentation suggests. https://developer.apple.com/library/ios/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/BezierPaths/BezierPaths.html
Or I could create a rectangle with a UIView and carve it with 2 small squares and make an E by substracting those 2 spots.
I'm not sure which way is the way to go considering efficiency and everything. If there's any other better ways, please enlighten me. Thanks!
(I've found plenty about drawing shapes on here but none is even remotely recent and I'd like a recent answer)