Home

Awesome

Simulator Status Magic - Xamarin.iOS Bindings

Latest version Downloads from NuGet

This repo contains Xamarin.iOS bindings for Simulator Status Magic.

Simulator Status Magic modifies the iOS Simulator so that it has a perfect status bar, then run your app and take perfect screenshots every time. The modifications made are designed to match the images you see on the Apple site and are as follows:

And the library is configurable to fit all your status bar needs.

Usage

  1. Clone the this repo.
  2. Build the solution.
  3. Add the DLL as a reference to your Xamarin iOS project.
  4. Modify your main method to enable the magic while running in the simulator:
static void Main(string[] args) {
#if SIMULATOR
  SDStatusBarManager.SharedInstance.BatteryDetailEnabled = false;
  SDStatusBarManager.SharedInstance.EnableOverrides();
#endif

Configuration

TO BE ADDED