Skip to content

Instantly share code, notes, and snippets.

View sebfia's full-sized avatar
🎯
Focusing

Sebastian Fialka sebfia

🎯
Focusing
View GitHub Profile
@Clancey
Clancey / BrightlyBlurredUIView
Last active December 24, 2015 14:59
A brightly colored iOS 7 UIBlurView
using System;
using MonoTouch.UIKit;
using MonoTouch.CoreAnimation;
public class BrightlyBlurredUIView: UIView
{
CALayer blurLayer,accentLayer;
UIView accentView;
UIToolbar toolbar;
public BrightlyBlurredUIView()
@andywhitt
andywhitt / MailViewTestViewController.cs
Created May 9, 2012 12:59
A MonoTouch iOS Mail like example with a custom view and a UIWebView
using System;
using System.Drawing;
using System.IO;
using System.Net;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
// A MonoTouch iOS Mail like example with a custom view and a UIWebView :
//
// http://stackoverflow.com/questions/10434444/zoom-a-uiwebview-like-ios-mail-app/10463431
@davidroth
davidroth / ToastView.cs
Last active September 26, 2015 13:48
ToastView allows to show UIToasts on the Iphone via Monotouch and C#
// Licence: MIT X11
// Note: This is an Objective-C to C# translation by using code from: http://code.google.com/p/toast-notifications-ios/
namespace Fusonic.Monotouch.Utils
{
public class ToastView : NSObject
{
ToastSettings theSettings = new ToastSettings ();
private string text = null;
private UIView view;