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 的回复
于 2013 年 11 月 26 日 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 的回复
于 2013 年 11 月 29 日 4:52下午
Hi Travis,
Thanks for the quick reply. I'm gonna check out libraries now. Hope it helps to fix the problem.