0

我很难用 json 提要日期字段填充 tableview 单元格。我认为这与我获取日期的方式有关

NSMutableArray *datesArray = [[NSMutableArray alloc] init];

    for (NSDictionary *tempDict in json){
        [datesArray addObject:[tempDict objectForKey:@"date"]];
    }

如果可以,请提供帮助。我已经经历了我能想到的一切(仍在学习)。

.h 文件

#import <UIKit/UIKit.h>

@interface AvailabilityViewController : UIViewController <UITextFieldDelegate, UITableViewDelegate, UITableViewDataSource>
{

    NSDate *appointmentdate;
    UIActionSheet *dateSheet;
    UITextField *mydatetextfield;
    UILabel *pastDateLabel;
    NSArray *json;

}
//-(IBAction)getDataFromJson:(id)sender;

@property (strong, nonatomic) IBOutlet UITextField *mydatetextfield;
@property (nonatomic, retain) NSDate *appointmentdate;
@property (strong, nonatomic) IBOutlet UILabel *pastDateLabel;
@property (strong, nonatomic) IBOutlet UITableView *_tableView;
@property (nonatomic, retain) NSArray *json;
//-(void)setDate;
-(void)dismissDateSet;
-(void)cancelDateSet;



@end

.m 文件

- (void)fetchedData:(NSData *)responseData {
    //parse out the json data

    NSError* error;
    //NSLog(@"string is %@", responseData);

    self.json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];

    NSLog(@"string is %@", responseData);
    if ([json isKindOfClass:[NSArray class]]) {
        NSLog(@"its an array");
    } else if ([json isKindOfClass:[NSDictionary class]]) {
        NSLog(@"its a dictionary");
    }  else if ([json isKindOfClass:[NSString class]]) {
        NSLog(@"its a string");
    }  else if ([json isKindOfClass:[NSNumber class]]) {
        NSLog(@"its a number");
    }  else if ([json isKindOfClass:[NSNull class]]) {
        NSLog(@"its a null");
    } else if (json == nil){
        NSLog(@"nil");
    }
    //NSArray* latestLoans = [json objectForKey:@"date"]; //2
    NSMutableArray *datesArray = [[NSMutableArray alloc] init];

    for (NSDictionary *tempDict in json){
        [datesArray addObject:[tempDict objectForKey:@"date"]];
    }

    NSLog(@"this is your datesArray %@", datesArray);
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return self.json.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
     cell.textLabel.text = [[self.json objectAtIndex:indexPath.row] objectForKey:@"date"];

    return cell;
    //[_tableView reloadData];
}  

这是我的 datesArray 的 NSLog

2012-08-21 10:09:39.303 GBSB[1409:15b03] this is your datesArray (
    "2012-08-13 12:00:00",
    "2012-08-13 10:00:00",
    "2012-08-13 13:00:00"

这是 viewDidLoad 的样子

- (void)viewDidLoad
{
    [super viewDidLoad];
    dispatch_async(kBgQueue, ^{
        NSData* data = [NSData dataWithContentsOfURL: 
                        kLatestKivaLoansURL];
        [self performSelectorOnMainThread:@selector(fetchedData:) 
                               withObject:data waitUntilDone:YES];

    });

}
- (void)fetchedData:(NSData *)responseData {
    //parse out the json data

    NSError* error;
    //NSLog(@"string is %@", responseData);

    self.json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];

    NSLog(@"string is %@", responseData);
    if ([json isKindOfClass:[NSArray class]]) {
        NSLog(@"its an array");
    } else if ([json isKindOfClass:[NSDictionary class]]) {
        NSLog(@"its a dictionary");
    }  else if ([json isKindOfClass:[NSString class]]) {
        NSLog(@"its a string");
    }  else if ([json isKindOfClass:[NSNumber class]]) {
        NSLog(@"its a number");
    }  else if ([json isKindOfClass:[NSNull class]]) {
        NSLog(@"its a null");
    } else if (json == nil){
        NSLog(@"nil");
    }
    //NSArray* latestLoans = [json objectForKey:@"date"]; //2
    NSMutableArray *datesArray = [[NSMutableArray alloc] init];

    for (NSDictionary *tempDict in json){
        [datesArray addObject:[tempDict objectForKey:@"date"]];
    }

    NSLog(@"this is your datesArray %@", datesArray);
    NSLog(@"this is the json %@", self.json);


    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
4

2 回答 2

3

您正在 fetchedData 方法中创建一个名为 json 的局部变量,并将解析后的响应放在那里。但是,因为这是一个局部变量,所以一旦您退出该方法,它就不再存在。

相反,您应该将解析后的响应数据放入您json在 .h 文件中声明的 viewController 的 @property 中。为此,请对您的fetchedData:方法进行以下更改:

self.json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];

然后在你的cellForRowAtIndexPath:你可以像这样提取数据:

cell.textLabel.text = [[self.json objectAtIndex:indexPath.row] objectForKey:@"date"]

numberOfRowsInSection:也应该返回:

return self.json.count;

编辑:

有关局部变量与 ivars 与属性的更多解释......

当您在 .h 文件中的视图控制器的 @interface 中声明此内容时:

NSArray *json;

您正在为您的类创建实例变量 (ivar)。每当您的类的实例被实例化时,它都会有一个名为的成员变量json,您可以在类的方法中访问它。

当您声明这样的属性时:

@property (nonatomic, retain) NSArray *json;

以及实现文件中的匹配@synthesize:

@synthesize json;

编译器会自动为您生成一个 setter 和 getter 方法,因此您可以使用这些方法:

NSArray *theArray = [self json]; // getter
[self setJson:newArray];         // setter

你可以在现代 Objective-C 中使用点符号来做同样的事情:

NSArray *theArray = self.json; // getter
self.json = newArray;          // setter

您的属性最终由 ivar 支持,默认情况下,该 ivar 的名称与属性相同,如果它不存在,它将为您自动生成。(您还可以在 @synthesize 语句中指定支持 ivar 的名称,并且您会经常看到人们使用以下划线开头的 ivar 名称以帮助保持 ivar 名称和属性名称是什么,但我此处不再赘述)

您的对象的属性可以从其他类访问,而您的对象的 ivars 不能。

但回到你的问题。除了您的 ivar 和属性之外,您还创建了一个局部变量,也在json您的fetchedData:方法中命名。这个变量,因为你在方法体中声明了它,它只会在方法完成之前存在,届时它将被释放,如果不保留在其他地方,包含的数据将丢失。因为你给你的局部变量赋予了与你的 ivar 相同的名字,所以局部变量有效地隐藏了 ivar。

Apple 不建议直接使用 ivars,而是通过您的类属性(getter 和 setter 方法)进行所有访问。这就是为什么我建议使用self.json. 它还应该解决您的问题,因为保存到您的属性的值将在方法执行之后持续存在。

希望对一些人有所帮助。

于 2012-08-21T17:35:16.523 回答
0

看起来“json”是一个 NSDictionary 的数组。

你不能这样做:

cell.textLabel.text = [json objectAtIndex:indexPath.row]; 

(即为 UILabel 的文本字段分配一个 NSDictionary)

但您可以执行以下操作:

cell.textLabel.text = [[json objectAtIndex:indexPath.row] objectForKey:@"date"];  
于 2012-08-21T17:29:10.470 回答