4月22日更新:
问题已解决:原来 API 需要 OAUTH 才能工作……这解释了为什么它会在浏览器中正确加载(我已经登录),而不是在 JSON 验证器或我自己的应用程序等其他应用程序中。
我正在尝试编写一个类,它将在 Lion 上的 Xcode 4.3.2 中获取和解析 JSON 文件。我只写了几个星期的代码,如果这是一个有点愚蠢的问题,我很抱歉!代码似乎工作正常,除了只有 JSON 文件中的前 20 个条目显示(应该有 200 个)。知道为什么会这样吗?
- (void) initJSON
{
NSString *urlstri = [[NSString alloc] initWithFormat:@"http://api.t.sina.com.cn/statuses/followers.json?source=?????&count=200&screen_name=%@", userName];
NSURL *newURL = [[NSURL alloc] initWithString:urlstri];
NSURLRequest *request = [NSURLRequest requestWithURL:newURL];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
[self performSelectorOnMainThread:@selector(fetchedData:) withObject:data waitUntilDone:NO];
}
];}
- (void) fetchedData:(NSData *)responseData {
//parse out the json data
NSError* error;
NSDictionary* json = [NSJSONSerialization
JSONObjectWithData:responseData //1
options:kNilOptions
error:&error];
NSArray* newestFollower = [json objectForKey:@"users"]; //2
fnumber = 0;
mnumber = 0;
int arraySize = [newestFollower count];
NSLog(@"%i",arraySize);
for (i=0; i<arraySize; ++i) {
NSDictionary* userProfile = [newestFollower objectAtIndex: i];
NSString* userGender = [userProfile objectForKey:@"gender"];
//NSLog(@"%@", userGender);
if([userGender isEqualToString:@"m"]){
//NSLog (@"man");
++mnumber;
}
if([userGender isEqualToString:@"f"]){
//NSLog(@"notman");
++fnumber;}
}
mOutput = [NSNumber numberWithInt:(mnumber)];
fObj = [NSString stringWithFormat:@"%i", fnumber];
mObj = [NSString stringWithFormat:@"%i", mnumber];
NSLog (@"Boys:%@", mObj);
NSLog (@"Girls:%@", fObj);