I am using CGImageCreateWithMaskingColors() to remove particular color from the UIImage. The color removal process works fine but the transparent region in the image turns black after masking process.See the code pasted below.
CGImageRef imageRef = self.editedImage.CGImage;
CGImageRef myColorMaskedImage = CGImageCreateWithMaskingColors(imageRef, myMaskingColors);
UIImage *newImage = [self normalizeWithAlpha:[UIImage imageWithCGImage:myColorMaskedImage]];
CGImageRelease(myColorMaskedImage);