Sha256: 2b8efd6e591c853235ee0178806859d702f9bfdd61617f852b7fe22d95f29ef5

Contents?: true

Size: 917 Bytes

Versions: 2

Compression:

Stored size: 917 Bytes

Contents

class String

  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

2 entries across 2 versions & 1 rubygems

Version Path
sugarcube-0.1.6 lib/sugarcube/string.rb
sugarcube-0.1.5 lib/sugarcube/string.rb