partial void LikeButton_Activated(UIBarButtonItem sender)
        {
            Accengage.TrackLead("Facebook", "like");

            SCLAlertView alert = new SCLAlertView();

            alert.ShowSuccess(this.ParentViewController, "Thank you!", "Thanks for liking us on Facebook!", "Close", 3.0f);
        }
        partial void ShowSuccess(UIButton sender)
        {
            SCLAlertView alert = new SCLAlertView();

            alert.ShowSuccess(this, "Hello World", "This is a more descriptive text.", "Done", 0);
        }