解决方案 »

  1.   

    用这个方法
        [sinaweibo requestWithURL:@"users/show.json"
                           params:[NSMutableDictionary dictionaryWithObject:sinaweibo.userID forKey:@"uid"]
                       httpMethod:@"GET"
                         delegate:self];然后获取成功后会执行回调
    -(void)request:(SinaWeiboRequest *)request didFinishLoadingWithResult:(id)result
    其中的result里包含了你要的数据
     呢称:   NSLog(@"name %@",[result objectForKey:@"name"]);
     头像:   NSLog(@"avatar_large %@",[result objectForKey:@"avatar_large"]);
     性别:   NSLog(@"gender %@",[result objectForKey:@"gender"]);