在 iOS7之前,是使用以下方法建立的:xcode
CG_EXTERN CGContextRef CGBitmapContextCreate(void *data, size_t width,ui
size_t height, size_t bitsPerComponent, size_t bytesPerRow,spa
CGColorSpaceRef space,CGImageAlphaInfo bitmapInfo)code
注意最後一個參數類型是 CGImageAlphaInfo 枚舉類型中的kCGImageAlphaPremultipliedLast值。其整型值爲1。ip
typedef CF_ENUM(uint32_t, CGImageAlphaInfo) ci
{rem
kCGImageAlphaNone, /* For example, RGB. */get
kCGImageAlphaPremultipliedLast, /* For example, premultiplied RGBA */it
kCGImageAlphaPremultipliedFirst, /* For example, premultiplied ARGB */io
kCGImageAlphaLast, /* For example, non-premultiplied RGBA */
kCGImageAlphaFirst, /* For example, non-premultiplied ARGB */
kCGImageAlphaNoneSkipLast, /* For example, RBGX. */
kCGImageAlphaNoneSkipFirst, /* For example, XRGB. */
kCGImageAlphaOnly /* No color data, alpha data only */
};
可是在iOS7版本中,這個最後的參會類型發生了變化。看一下定義:
CGContextRef CGBitmapContextCreate(void *data, size_t width,
size_t height, size_t bitsPerComponent, size_t bytesPerRow,
CGColorSpaceRef space, CGBitmapInfo bitmapInfo)
很明顯最後一個參數由CGImageAlphaInfo 變化爲 CGBitmapInfo,看一下這個類型的定義
typedef CF_OPTIONS(uint32_t, CGBitmapInfo)
{
kCGBitmapAlphaInfoMask = 0x1F,
kCGBitmapFloatComponents = (1 << 8),
kCGBitmapByteOrderMask = 0x7000,
kCGBitmapByteOrderDefault = (0 << 12),
kCGBitmapByteOrder16Little = (1 << 12),
kCGBitmapByteOrder32Little = (2 << 12),
kCGBitmapByteOrder16Big = (3 << 12),
kCGBitmapByteOrder32Big = (4 << 12)
} CF_ENUM_AVAILABLE(10_4, 2_0);
從頭至尾沒有發現值爲1的枚舉量值。故在使用的時候會出現以下警告:
Implicit conversion from enumeration type 'enum CGImageAlphaInfo' to different enumeration type 'CGBitmapInfo' (aka 'enum CGBitmapInfo')
意思很明顯不過,類型不匹配非法。
如下給出解決方法:
第一種方法,定義宏:
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1
#define kCGImageAlphaPremultipliedLast (kCGBitmapByteOrderDefault | kCGImageAlphaPremultipliedLast)
#else
#define kCGImageAlphaPremultipliedLast kCGImageAlphaPremultipliedLast
#endif
這樣就會直接映射出一個值爲1的宏,原有方法不用改變。
第二種方法:原理和第一個同樣,目的 仍是爲了生產出一個爲1的值,直接修改代碼。
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1
int bitmapInfo = kCGBitmapByteOrderDefault | kCGImageAlphaPremultipliedLast;
#else
int bitmapInfo = kCGImageAlphaPremultipliedLast;
#endif
CGContextRef context = CGBitmapContextCreate(nil, CGContexWith*2, 290.0*2, 8, 4*CGContexWith*2, colorSpace, bitmapInfo);
其實全部的作法,不外乎爲了使這裏的值爲1,類型匹配。你也直接能夠傳1,不用麻煩的各類寫代碼。也能夠直接進行類型強制轉換,這個你隨便。只是每一個人的習慣不同,故,如何解決,本身參考決定 。