public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            NSDictionary cData = NSDictionary.FromObjectAndKey(NSObject.FromObject("val1"), NSObject.FromObject("key1"));

            ADBMobile.CollectLifecycleDataWithAdditionalData(cData);

            table = new UITableView(View.Bounds);             // defaults to Plain style
            string[] tableItems = new string[] {
                //config
                "version",
                "privacyStatus",
                "setPrivacyStatus - in",
                "setPrivacyStatus - out",
                "setPrivacyStatus - unknown",
                "lifetimeValue",
                "userIdentifier",
                "setUserIdentifier",
                "debugLogging",
                "setDebugLogging - true",
                "setDebugLogging - false",
                "keepLifecycleSessionAlive",
                //Analytics
                "trackState",
                "trackAction",
                "trackActionFromBackground",
                "trackLocation",
                "trackBeacon",
                "trackingClearCurrentBeacon",
                "trackLifetimeValueIncrease",
                "trackTimedActionStart",
                "trackTimedActionUpdate",
                "trackTimedActionEnd",
                "trackingTimedActionExists",
                "trackingIdentifier",
                "trackingSendQueuedHits",
                "trackingClearQueue",
                "trackingGetQueueSize",
                //Media
                "mediaCreateSettingsWithName",
                "mediaAdCreateSettingsWithName",
                "mediaOpenWithSettings",
                "mediaClose",
                "mediaPlay",
                "mediaComplete",
                "mediaStop",
                "mediaClick",
                "mediaTrack",
                //Target
                "targetLoadRequest",
                "targetCreateRequestWithName",
                "targetCreateOrderConfirmRequestWithName",
                "targetClearCookies",
                //AAM
                "audienceVisitorProfile",
                "audienceDpid",
                "audienceDpuuid",
                "audienceSetDpid",
                "audienceReset",
                "visitorMarketingCloudID",
                "visitorSyncIdentifiers",
                //4.13.0 Update
                "setAdvertisingIdentifier",
                "setPushIdentifier",
                "setAppGroup",
                "setAppExtensionType",
                "registerAdobeDataCallback",
                "trackPushMessageClickthrough",
                "trackLocalNotificationClickthrough",
                "trackAdobeDeepLink",
                "acquisitionCampaignStartForApp",
                "targetLoadRequestWithRequestLocation",
                "targetThirdPartyId",
                "targetSetThirdPartyId",
                "targetPcID",
                "targetSessionID",
                "visitorSyncIdentifiers",
                "visitorSyncIdentifiersAuthState",
                "visitorSyncIdentifierWithTypeAuthState",
                "visitorGetIDs",
                "visitorAppendToURL"
            };

            table.Source = new TableSource(tableItems);
            Add(table);
            // Perform any additional setup after loading the view, typically from a nib.
        }