I'm looking for a compiler setting that will allow me to do this:
[imageGraphEraserIcon imageByResampling:{20, 20} zoom:3];
without throwing a warning. Now I have to do this all the time and the casting seems pointless since the compiler should know the type to expect:
[imageGraphEraserIcon imageByResampling:(CGSize){20, 20} zoom:3];
I know about "CGSizeMake", I'm looking for a shorter way, more pleasant to the eye to do it.