Hi,
I'm trying to fetch genres. I can get json data when I browse the url. But when I call the API from code, data returns nil.
This is the problematic code: (allGenres returns nil)
NSURL *genreUrl = [[NSURL alloc]initWithString:@"http://api.themoviedb.org/3/genre/list?api_key=XXX"];
NSData *allGenres = [[NSData alloc] initWithContentsOfURL:genreUrl];
I would appreciate if you help me.
Thanks
Ecem
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة Travis Bell
بتاريخ نوفمبر 26, 2013 في 5:58 مساءا
Hi Ecem,
I'm not sure, to be honest. I don't have much experience in objective C.
Have you taken a look at the 2 iOS libraries we have available? Perhaps they will give you some insight?
https://www.themoviedb.org/documentation/api/wrappers-libraries
رد بواسطة ecemd
بتاريخ نوفمبر 29, 2013 في 4:52 مساءا
Hi Travis,
Thanks for the quick reply. I'm gonna check out libraries now. Hope it helps to fix the problem.