android中#40000000转换为iOS RGBA是什么颜色

40 00 00 00 前2个是透明度,后面是普通的RGB值
16进制40  转换为十进制为64      64/255=0.25
RGBA(0, 0, 0, 0.25)

#define RGBA(r,g,b,a) [UIColor colorWithRed:r/255.0f green:g/255.0f blue:b/255.0f alpha:a]
#define RGB(r,g,b) RGBA(r,g,b,1.0f)

你可能感兴趣的:(android中#40000000转换为iOS RGBA是什么颜色)