I have a CATiledLayer
backed UIView
that is added to UIScrollView
and it is returned as view to be scaled in response to -(UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView
delegate method.
Now the problem is that scaling on a scale falling between the 2x steps provided by CATiledLayer
(like for example 1.333) results in very pixelated image when I compile and test against 3.0 SDK. In 2.2.1 the scaling is much smoother.
I tried to set layer's minificationFilter
to kCAFilterTrilinear
, but that resulted in a way too blurry image.
Any ideas?