CGColorSpaceRef colorSpace = CGImageGetColorSpace([UIImage imageNamed:@"shirtWhite.jpeg"]);
CGContextRef context = CGBitmapContextCreate (nil,
width,
height,
CGImageGetBitsPerComponent(imageToTest.image),
CGImageGetBytesPerRow(imageToTest.image),
colorSpace,
CGImageGetAlphaInfo(imageToTest.image));
画像を渡す各行で警告が表示されました。警告は「警告: 互換性のないポインター型から 'CGImageGetColorSpace' の引数 1 を渡しています」
警告: 'CGImageGetBitsPerComponent' の引数 1 を互換性のないポインター型から渡しています
"