Code Monkey home page Code Monkey logo

stampsy.extensions's Introduction

Stampsy.Extensions

This is meant to be a small "misc utils" library for MonoTouch that makes some UIKit/Foundation API more C#-friendly.
It contains friendlier wrappers around some MonoTouch classes/methods and fairly popular extension methods.

My rule of thumb for inclusion of a class or method is that:

  • it should be the kind of thing that isn't in the framework but is commonly requested and has lots of upvotes on SO;
  • it involves little to no abstraction and is a really thin wrapper above Apple classes.

Contributions are welcome, if they satisfy both criteria.

Code Samples

Reading and Writing iOS Settings

using MySettings = Stampsy.Extensions.Foundation.UserSettings<MySetting>;

enum MySetting {
    GodMode,
    LikesCheese
}

MySettings.RegisterDefaultsFromSettingsBundle ();
bool god = MySettings.Read<bool> (MySetting.GodMode);

Task Extensions for UIKit

Api.UploadAvatar (img)
   .WithNetworkIndicator () // takes care of UIApplication.NetworkActivityIndicatorVisible
   .RegisterAsBackgroundTask (); // does the UIApplication.BeginBackgroundTask dance

Safely Enabling Crash Reporters

CrashReporting.HookCrashReporterWithMono (() => {
    // Using HockeyApp in this example
    var manager = BITHockeyManager.SharedHockeyManager;
    manager.Configure (HockeyAppId, null);
    manager.StartManager ();
});

Misc

var titleView = bar.Subviews.FirstOrDefault (
    v => v.GetClassName () == "UINavigationItemView" // gets ObjC class name
    );

stampsy.extensions's People

Contributors

gaearon avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.