You are trying to set the wrong property ( trackPageView ) in your viewDidLoad: where you really have to set the trackedViewName property. The code should be as follows:
self.trackedViewName = @"Contact Screen";
Also in the header file ( .h ), make sure your @interface inherits from the GAITrackedViewController class:
@interface YourContactScreenController : GAITrackedViewController
source share