有一個int值:RGB = 4294967295;
。怎麼樣從這個值中設置color?在C++中使用setRGB()方法。在IOS中有沒有類似的實現方法?
謝謝高手指教。
試試:
float alpha = (intARGB >> 24) % 256;
float red = (intARGB >> 16) % 256;
float green = (intARGB >> 8) % 256;
float blue = intARGB % 256;
UIColor *theColor = [UIColor colorWithRed:red/255. green:green/255. blue:blue/255. alpha:alpha/255.];