Lukas Stuehrk

3pods
A simple tool to find memory leaks in UI code. Automatically detects memory leaks in view controllers and views. No code changes required and one-line integration.
License: MIT
In iOS 7, Apple introduced the possibility to execute JavaScript via the JavaScriptCore JavaScript engine. Unfortunately, JavaScriptCore is missing some objects and functions a browser
JavaScript environment would have. Especially the methods described in the WindowTimers specification, such as setTimeout
or setInterval
are not
provided. This library implements those methods, so it is possible to use JavaScript libraries which were originally
developed for in-browser use in your Objective-C (or Swift) application without the need to use a hidden WebView.
License: MIT
In iOS 7, Apple introduced the possibility to execute JavaScript via the JavaScriptCore JavaScript
engine. Unfortunately, JavaScriptCore is missing some
objects and functions a JavaScript environment of a browser would have. Especially the
XMLHTTPRequest
(see the Mozilla documentation object needed for AJAX reqeuests
is not provided by JavaScriptCore. This library implements this missing object, so it is possible to
use JavaScript libraries which were originally developed for in-browser use in your Objective-C
(or Swift) application without the need to use a hidden WebView.
License: MIT