Sha256: be2d82cf8ddf4afb2a219c022fb607db73f7653ae9180272c5787f573e0c4d6e
Contents?: true
Size: 919 Bytes
Versions: 4
Compression:
Stored size: 919 Bytes
Contents
class NSString def nsurl @url ||= NSURL.alloc.initWithString(self) end def uiimage @uiimage = UIImage.imageNamed(self) end def uifont(size=UIFont.systemFontSize) @uifont = UIFont.fontWithName(self, size:size) end def uicolor(alpha=nil) if self[0,1] == '#' # #fff if self.length == 4 return (self[1] * 2 + self[2] * 2 + self[3] * 2).to_i(16).uicolor(alpha) end # else return self[1..-1].to_i(16).uicolor(alpha) end begin self.to_sym.uicolor(alpha) rescue SugarNotFoundException self.uiimage.uicolor(alpha) end end # This can be called as `"Hello".localized` or `"Hello"._`. The `str._` # syntax is meant to be reminiscent of gettext-style `_(str)`. def localized(value=nil, table=nil) @localized = NSBundle.mainBundle.localizedStringForKey(self, value:value, table:table) end alias :_ :localized end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sugarcube-0.2.3 | lib/sugarcube/nsstring.rb |
sugarcube-0.2.2 | lib/sugarcube/nsstring.rb |
sugarcube-0.2.1 | lib/sugarcube/nsstring.rb |
sugarcube-0.2.0 | lib/sugarcube/string.rb |