I have an iOS application that downloads an xml file using:
NSURL *queryURL = [NSURL URLWithString:query];
NSData *xmlData = [[NSData alloc] initWithContentsOfURL:queryURL];
The call is made to a third-party, so I'm not in control of the servers. The third party needs to know what that user-agent is (they are optimizing the feed based on the user-agent)
My question is how can I determine what my user-agent is? I don't specifically set that anywhere and didn't find anything in the documentation.