Sha256: b72d7dc53c43107cba50a1a7b2ba463cde1267f0f1d3dd7c2fbbdfbf62d37430
Contents?: true
Size: 412 Bytes
Versions: 42
Compression:
Stored size: 412 Bytes
Contents
class UIColor def to_s return super unless self.respond_to?(:alpha) alpha_s = ((alpha || 1) < 1 ? "(#{alpha})" : '') if system_name return "UIColor.#{system_name}#{alpha_s.length > 0 ? '.colorWithAlphaComponent' + alpha_s : ''}" elsif css_name return ":#{css_name}.uicolor#{alpha_s}" elsif hex return "'#{hex}'.uicolor#{alpha_s}" else super end end end
Version data entries
42 entries across 42 versions & 1 rubygems