</a>
DeveloperKit is an shortcut that brings many tools into one shortcut without having to spend long times copying shortcuts.
DeveloperKit on iOS is like having a magic wand for your tools β no more copying and pasting shortcuts! Itβs your handy sidekick, making your developer life smoother. πͺ
Picture this: a friend that gathers all your favorite tools in one place. With DeveloperKit, you glide through tasks effortlessly, no need for tricky shortcuts. Itβs like having a backstage pass to an iOS concert where everything just flows β easy, breezy, and all about you getting things done. Enjoy the magic of DeveloperKit, turning your iOS adventure into a breeze! πβ¨
| Feature | Description | Options | |βββββββ-|ββββββββββββββββββββββ|βββββββββ| | Version | Retrieves the version of the DeveloperKit. | | | Ping | Pings a specific IP and returns the response time in milliseconds.| ip | | ConnectedToWifi? | Indicates whether the user is currently connected to Wi-Fi. | | | ConnectedToInternet? | Indicates whether the user is currently connected to the internet.| | | Location | Quickly and simply retrieves the userβs current location. | | | RunJavaScript | Executes a provided JavaScript code. | code | | Timezone | Retrieves the timezone of the user. | | | CensorText | Censors the provided text. | text | | UserLanguage | Retrieves the preferred language of the user. | | | CheckForUpdates | Checks for updates via RoutineHub. | id, version | | BatteryLeft | Displays the remaining battery percentage. | | | Boolean | Returns a boolean response. | response | | GetUserName | Retrieves the username of the user. | | | Milliseconds | Measures time intervals in milliseconds. | time | | Draw | Allows the user to draw on a blank page. | | | GetDeviceModel | Retrieves the model of the userβs device. | | | Unshorten | See where an URL takes to. | url | | Imagine | Generates an image. | text | | ShowInMaps | Shows a location in Apple Maps. | latitude, longitude, query|
To use DeveloperKit: itβs easy to understand!
First, you need to have a dictionary, itβs the main entry for DeveloperKit.
You will always use this for DeveloperKit, no more things are required after this.
Then, in the screenshot, we need to put a specific request.
[!WARNING] While doing this step, make sure to put a correct request or else things may break!
For this tutorial, we are gonna use the UserLanguage feature. This allows us to retrieve the userβs language so that we can translate the shortcutβs text into the userβs language.
If you do everything correctly, you should see a result with the userβs language (example: fr-FR)
You can add options to requests because they are needed.
Letβs do for example the function: RunJavascript.
RunJavascript is a feature that executes a provided JavaScript code via the option βcodeβ.
This code:
<html>
<head>
<script>
var random = Math.floor(Math.random() * 100) + 1;
document.write(random);
</script>
</head>
<body></body>
</html>
generates a random number from 0 to 100.
Example Result: 42.
You can click here to download. Or click here if the link below doesnβt work.