mam problem w przekształcaniu uicolor koloru hex, oto co znalazłemhex kolor z uicolor
CGColorRef colorref = [[Colorview_ backgroundColor] CGColor];
int numComponents = CGColorGetNumberOfComponents(colorref);
if (numComponents == 4) {
const CGFloat *components = CGColorGetComponents(colorref);
int hexValue = 0xFF0000*components[0] + 0xFF00*components[1] + 0xFF*components[2];
NSString *hexString = [NSString stringWithFormat:@"#%d", hexValue];
}
ten kod daje mi # 5576149 (na przykład) na hexString, nas widać istnieje 7 cyfr nie 6, to nie jest szesnastkowy kolor, każda pomoc będzie doceniona, thx.
Można korzystać z tej biblioteki https: // github .com/burhanuddin353/TFTColor –