Button border color - Objective C - Swift

前端 未结 3 1544
伪装坚强ぢ
伪装坚强ぢ 2021-01-20 09:14

I want to change my border color to a specific hex color(#21CE99), can you guys please help me?

I\'ve already known how to change it to a basic color, for example:

3条回答
  •  无人及你
    2021-01-20 09:38

    easier

    _button.layer.borderColor = [UIColor colorWithRed:0x21 / 255.0 green:0xce / 255.0 blue:0x99 / 255.0 alpha:1.0].CGColor;
    

提交回复
热议问题