I have a bunch of CAShapeLayers built with UIBezierPath and stored inside of UIScrollView.
I wonder if there any way to keep the lineWidth of CAShapeLayer's path away from scaling when UIScrollView is zoomed over 100%. I mean applying the UIScrollView's transformation rules to CAShapeLayer, but keep the path's widh the same as it used to be on 1.0 zoomScale. (So when the layer with 1pt path lineWidth will be zoomed to 300%, the lineWidth of the layer on @2x device won't become 6px height, but will keep the height of 2px)
Is it what you want ?