Sha256: 15df5610c67ea65c2018ffc69d4622ab8f48f406bccc01b6e5b8d82571a8cfb3
Contents?: true
Size: 407 Bytes
Versions: 44
Compression:
Stored size: 407 Bytes
Contents
class NSArray # [160, 210, 242].uicolor => 0xA0D2F2.uicolor def uicolor(alpha=1.0) red = self[0] / 255.0 green = self[1] / 255.0 blue = self[2] / 255.0 if self[3] alpha = self[3] end NSColor.colorWithRed(red, green:green, blue:blue, alpha:alpha.to_f) end def cgcolor(alpha=nil) nscolor(alpha).CGColor end def skcolor(alpha=nil) uicolor(alpha) end end
Version data entries
44 entries across 44 versions & 1 rubygems