I guessed you are doing this to display part of an image on the screen. Because you mentioned UIImageView. And optimization problem always need defining the problem specifically.
Trust Apple for Regular UI stuffs
Actually, UIImageView with clipsToBounds is one of the fastest/simplest way to archive your goal if your goal is just clipping a rectangular region of an image. (not too big) And also, you don't need to send setNeedsDisplay message.
Or you can try putting the UIImageView inside of an empty UIView and set clipping at the container view. With this technique, you can transform your image freely by setting transform property in 2D. (in all of scaling, rotation, translation)
If you need 3D transformation, you still can use CALayer with masksToBounds property. But using CALayer will give you very little extra performance usually not considerable.
Anyway, you should know all of the low-level details to use them properly for optimization.
Why is that one of the fastest way?
UIViews are implemented with CALayer which implemented on top of OpenGL which is direct interface to GPU. This mean whole UIKit is being accelerated by GPU.
And actually UIView is just a thin layer on top of CALayer, and CALayer is just an objective/hierarchical controller interface to the OpenGL. So if you use them properly (I mean, within designed limitations), it will perform as well as plain OpenGL implementation. If you use just a few images to display, you'll get acceptable performance with UIView implementation because it can get full acceleration of underlying OpenGL (which means GPU acceleration)
Anyway if you need extreme optimization for hundreds of animated sprites with finely tuned pixel shaders like a game app, you should use OpenGL directly. Because CALayer lacks many options for optimization at lower level. Anyway, at least for optimization of UI stuff, it's incredibly hard to be better than Apple. Apple is doing this over decades.
Why your method is slower than UIImageView?
What you should know is all about GPU acceleration. In all of the recent computers, fast graphics performance is being able to be archived only with GPU. So the point is whether the method you're using is implemented on top of GPU or not.
IMO, CGImage drawing methods are not implemented with GPU.
I think I read mentioning about this on Apple's documentation but I can't remember where. So I'm not sure about this. Anyway that's true the drawing is slower now. If the drawing is implemented with GPU it shouldn't be slow. So it seems to be done in CPU, and any of graphics operations done in CPU is a lot slower than GPU. So you should avoid this.
And just clipping image and compositing that image layers are very simple and easy operation for GPU. So you can expect the UIKit library will utilize this because whole UIKit is implemented on top of OpenGL.
About Limitations
Because optimization is a kind of work about micro-management, specific numbers and small facts are very important. What's the medium size? OpenGL on iOS usually limits maximum texture size as 1024x1024 pixels. If your image is larger than this, it will not work or performance will be degraded greatly. (I think UIImageView is optimized for images within the limits.)
If you need to display huge images with clipping, you have to go another optimization like CATiledLayer and that's totally different story.
And don't go OpenGL unless you want to know every details of the OpenGL. It needs full understanding about low-level graphics and 100 times more codes at least.