Sha256: bb540e37530e87380346a24db03e14e023c6ceb5d512c1c56c44254e26d76097
Contents?: true
Size: 709 Bytes
Versions: 36
Compression:
Stored size: 709 Bytes
Contents
class UIButton def title titleForState(UIControlStateNormal) end def setTitle(value) setTitle(value, forState: UIControlStateNormal) end def titleColor titleColorForState(UIControlStateNormal) end alias title_color titleColor def setTitleColor(value) value = value.uicolor if value.respond_to?(:uicolor) setTitleColor(value, forState: UIControlStateNormal) end alias title_color= setTitleColor def attributedTitle attributedTitleForState(UIControlStateNormal) end alias attributed_title attributedTitle def setAttributedTitle(value) setAttributedTitle(value, forState: UIControlStateNormal) end alias attributed_title= setAttributedTitle end
Version data entries
36 entries across 36 versions & 1 rubygems