Method: MIM::MotionBrowser#load
- Defined in:
- lib/uikit/motion_browser.rb
#load(url) ⇒ Object
102 103 104 105 106 107 108 109 |
# File 'lib/uikit/motion_browser.rb', line 102 def load(url) unless url.is_a? NSURL url = NSURL.URLWithString(url) end request = NSURLRequest.requestWithURL(url) @webview.loadRequest(request) end |