我正在编写一个应用程序,其中我有一个从服务器收到的 JSON 格式的用户列表。后来,我从该 JSON 中提取每个用户的数据,并创建了一个名为 UsersController 的对象,该对象具有四个字段(我不知道这是否是适当的词),称为 prod_id、userName、userThumb 和 createTime。在我的 ViewController 中,我有一个 UsersController 对象和一个用于存储所有用户的数组。UsersController 类的代码是:
//UsersController.h
#import <UIKit/UIKit.h>
@interface UsersController : NSObject{
NSInteger *prof_id;
NSString *createTime;
NSString *fullName;
NSString *thumb;
}
@property (nonatomic) NSInteger *prof_id;
@property (nonatomic, retain) IBOutlet NSString *createTime;
@property (nonatomic, retain) IBOutlet NSString *fullName;
@property (nonatomic, retain) IBOutlet NSString *thumb;
@end
//UsersController.m
#import "UsersController.h"
@implementation UsersController
@synthesize prof_id;
@synthesize fullName;
@synthesize createTime;
@synthesize thumb;
@end
在 ViewController.m 我有以下代码:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSAutoreleasePool *pool=[[NSAutoreleasePool alloc] init];
NSArray *array_webdata=[[NSArray array] init];
NSString *searchStatus = [[NSString alloc] initWithData:webData encoding:NSUTF8StringEncoding];
array_webdata = [parsedata objectWithString:searchStatus error:nil];
//String with all data of each user
NSString *usersList = [array_webdata valueForKey:@"results"];
NSLog(@"\n usersList =\n %@ \n", usersList);
//extract data from the JSON data received from the server
NSArray *userName = [usersList valueForKey:@"fullname"];
NSArray *userID = [usersList valueForKey:@"prof_id"];
NSArray *userThumb = [usersList valueForKey:@"thumb"];
NSArray *userCreateTime = [usersList valueForKey:@"createTime"];
NSMutableArray *arrayUsuarios = [[NSMutableArray alloc] initWithCapacity: [userID count]];
int i;
UsersController *usuarioSimple;
UsersController *usuarioAuxiliar;
for (int i=0; i<[userName count]; i++) {
usuarioSimple = [[UsersController alloc] init];
usuarioAuxiliar= [[UsersController alloc] init];
//I store in the object called usuario the extracted data from JSON userName, userID, userThumb y userCreateTime
usuarioSimple.prof_id = [userID objectAtIndex:i];
usuarioSimple.fullName = [userName objectAtIndex:i];
usuarioSimple.thumb = [userThumb objectAtIndex:i];
usuarioSimple.createTime = [userCreateTime objectAtIndex:i];
[arrayUsuarios addObject:usuarioSimple];
usuarioAuxiliar = [arrayUsuarios objectAtIndex:i];
NSLog(@"pruebaConsulta.prof_id[%@]: %@",i, usuarioAuxiliar.prof_id);
NSLog(@"pruebaConsulta.fullName[%@]: %@",i, usuarioAuxiliar.fullName);
NSLog(@"pruebaConsulta.thumb[%@]: %@",i, usuarioAuxiliar.thumb);
NSLog(@"pruebaConsulta.createTime[%@]: %@\n",i, usuarioAuxiliar.createTime);
[usuarioSimple release];
[usuarioAuxiliar release];
}
[searchStatus release];
[connection release];
[webData release];
[pool drain];
}
在这里我有两个问题。第一个是在 bucle for 中使用的i的声明。我不知道为什么,但是当我执行时,当它必须显示i的值时,显示 (null)。
第二个问题是当我使用 [userID count]、[userName count]、[userThumb count] 或 [userCreateTime count] 时。这个指令不起作用,因为如果我写这行:
NSLog(@"userid count: %@", [userID count]);
执行崩溃并说 EXC_BAD_ACCESS。我证明了很多可能的解决方案,但总是失败,我需要你的帮助。谢谢。
ps:对不起我的英语!