This example demonstrates how to execute custom code when the navigation control's item is clicked. The New Action (NewObjectViewController.NewObjectAction) will be executed when clicking the "Create New..." item in the navigation control.
For details, see How to: Create a New Object via the Navigation Control
Example Comments
Added By: Peter Majzik at: 7/11/2013 5:02:10 AM
instead of this line
if(item.Data == typeof(DemoIssue))
this should be used
if ((System.Reflection.MemberInfo)item.Data == typeof(DemoIssue))