I have a PKCanvasView
in my IOS app. When the user puts in a drawing, it saves the strokes as a PKDrawing
. This drawing could be accessed on many different devices with different screen sizes. However, when a drawing that is created on a larger device, eg, an iPad, is viewed on a smaller device, eg, an iPhone, the drawing is cut off from the bottom right. Additionally, when a drawing created on a smaller device is viewed on the bigger device, it does not fill the space but rather is confined to the top right corner.
My Question:
Is there any way to scale a PKDrawing
up or down to fit the PKCanvasView
's frame?