[uicolor colorwithred:<#(cgfloat)#> green:<#(cgfloat)#> blue:<#(cgfloat)#> alpha:<#(cgfloat)#>];
此处的颜色参数容易想当然的写0-255的值,但此处应该写0.0~1.0的值。 可以这样写:
[uicolor colorwithred:103.0/255 green:142.0/255 blue:142.0/255 alpha:1.0]];
注意是float类型的,不加“.0”纯整数也会有问题。