Parse Json in MonoDevelop with C#

I need to consume Json in an iPhone project and for what ever reason, I’m <still> unable to get the preferred NewtonSoft.Json library to work in a MonoDevelop Project… thus, I’m giving System.Json a whirl. My end point call with an appended UISearchBar value appended looks something like this: var request = HttpWebRequest.Create (string.Format (@”your… Continue reading Parse Json in MonoDevelop with C#

Locating Your MonoDevelop Web Reference Properties

I have a Monotouch hobby project that I haven’t opened in a couple of Months because I’ve been too busy.  It’s a simple project that will let me upload an image from my iPhone to a cloud service with tags, sharing and notification options. The cloud service is my own, I built it and I’ve added… Continue reading Locating Your MonoDevelop Web Reference Properties

Tracking Privacy Policies

I’ve been working on a hobby project to track privacy policies during my weekends for a while now and I’m beginning to get some results. I know it’s a dry topic and that not everyone is concerned about privacy… but for those that are concerned, then you understand that we’ve entered an era where anything… Continue reading Tracking Privacy Policies

Handling The UISwitch ValueChanged Event To Determine State In MonoTouch

Posting this to help anyone that was stuck trying to determine why the UISwitch State value always returned 0. The mistake I was making when handling the ValueChanged Event was this (my IBOutlet is switchPrivateOnOff): switchPrivateOnOff.ValueChanged += delegate { switchPublicWarning.Text = string.Empty; switchPublicWarning.Text = switchPrivateOnOff.State.ToString();   // attempt to dump toggle value to UILabel };… Continue reading Handling The UISwitch ValueChanged Event To Determine State In MonoTouch

Handle UIToolBarButtonItem Clicked Event in MonoTouch

The UIToolBar and the UIToolBarButtonItem add a nice professional look to an app. Hooking the click event of the Bar Button Item can easily accomplished. The full MonoDevelop Solution for this sample can be downloaded at the bottom of this blog post. Add a UIToolBar to your .xib from Interface Builder. Your screen should look… Continue reading Handle UIToolBarButtonItem Clicked Event in MonoTouch