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#
Category: Developer
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
Free SQL Server 2012 eBook
Microsoft has a free SQL 2012 book that you can download as a PDF.
Telecommunication Vertical Privacy Policy Changes
To date, I’ve archived 37,183 Privacy Policies and have categorized everything to a market vertical. Here’s a sample set from the telecommunications vertical.
Privacy Policies For Music On Demand Vertical
Let me know if there is a service I should consider tracking in addition to these, which appear fairly stable thus far.
ASP:Chart ToolTip Formatting Flags
Having spent some time working on asp:charts recently, I can tell you that I didn’t have an easy time finding the ToolTip formatting flags that can be passed in to display data in the ToolTip. I wanted to display the name of the series of the line I wished to hover on and the value… Continue reading ASP:Chart ToolTip Formatting Flags
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
WWDC Videos
9to5mac posted a link to the WWDC video sessions.
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