Here we got error like Implicit conversion..
First thing need to be consider in mind.. we need to 'typecast' to resolve the warning
CGBitmapInfo bitmapInfo = kBitmapInfo;//old code here we got warning
Here we can simply typecast as belowCGBitmapInfo bitmapInfo = (CGBitmapInfo) kBitmapInfo;//do typecast as it
No comments:
Post a Comment