Im new at this Objective-c programming. My issue is that i need to create a header with the name “X-FBR-App” and the content of this header is a JSON String. The JSON strings content is 5 parameters. The parameters looks like this:
NSString *nid = @":";
NSString *vocab = @":";
NSString *inturl = @"testoverview";
NSString *mail = @"your@fbr.dk";
NSString *md5pw = @"password";
Im using iOS5 and the built in JSON lib. Any ideas of how to do this ?
something like this…