There is no built-in way to do this, but you can do it manually:
UIGraphicsBeginImageContext(CGSizeMake(desiredWidth, desiredHeight));
[originalImage drawAtPoint...];
...
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();