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 PM
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 PM
Hi Travis,
Thanks for the quick reply. I'm gonna check out libraries now. Hope it helps to fix the problem.