Skip to content

dalexsoto/AlexTouch.MBProgressHUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AlexTouch.MBProgressHUD

This is a MonoTouch Binding for Matej Bukovinski's MBProgressHUD Objective-C library

see more on https://github.com/jdg/MBProgressHUD

Adding AlexTouch.MBProgressHUD to your project

Just add AlexTouch.MBProgressHUD.dll to your project references in MonoDevelop.

  1. Add using AlexTouch.MBProgressHUD; to your c# file

Usage

You can create your hud using c# like this

		var hud = new MBProgressHUD(this.View);
		hud.Mode = MBProgressHUDMode.Determinate;
		hud.LabelText = "Loading...";
		hud.DetailsLabelText = "Some Description here";
		this.View.AddSubview(hud);
		hud.Show(true);

Also you can know when the hud was hidden using the following event

		hud.WasHidden += delegate
		{
			Console.WriteLine("Hud hidden");
		};

About

MBProgressHUD binding for MonoTouch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages