Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qwzybug/JSUserDefaults

JS bridge for accessing NSUserDefaults from a UIWebView
https://github.com/qwzybug/JSUserDefaults

Last synced: 3 months ago
JSON representation

JS bridge for accessing NSUserDefaults from a UIWebView

Awesome Lists containing this project

README

        

# JSUserDefaults

Real simple drop-in replacement for UIWebView. Just change the class membership of the web view in your nib (or create it programmatically, that oughta work too) and it'll let you access NSUserDefaults through the JSUserDefaults object. Like this:

[[NSUserDefaults standardUserDefaults] setObject:@"Bar"
forKey:@"Foo"];

(...some time later...)


document.write(JSUserDefaults.objectForKey("Foo"));

You can also set objects. Any plist object should work fine—arrays, dictionaries, strings, numbers. Other things might be dicey.

See the Demo project for an example.