gpt4 book ai didi

ios - 从 JSON 日期填充 UITableView 单元格

转载 作者:行者123 更新时间:2023-11-28 20:31:14 26 4
gpt4 key购买 nike

我很难用 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;
}

最佳答案

您正在 fetchedData 方法中创建一个名为 json 的局部变量,并将已解析的响应放入其中。但是,因为这是一个局部变量,一旦您退出该方法,它就会不复存在。

相反,您应该做的是将解析后的响应数据放入您在 .h 文件中声明的 viewController 的 json @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 文件中的 View Controller 的@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 支持,默认情况下它与属性同名,如果它不存在,将自动为您生成。 (您还可以在@synthesize 语句中指定支持 ivar 的名称,并且您经常会看到人们使用以下划线开头的 ivar 名称来帮助弄清楚什么是 ivar 名称以及什么是属性名称,但我此处不再赘述)

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

但是回到你的问题。除了您的 ivar 和属性之外,您还创建了一个局部变量,在您的 fetchedData: 方法中也命名为 json。这个变量,因为你在方法的主体中声明它,只会存在到方法结束,此时它将被释放,如果不在别处保留,包含的数据将丢失。因为您已为局部变量指定了与 ivar 相同的名称,所以局部变量有效地隐藏了 ivar。

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

希望对一些人有所帮助。

关于ios - 从 JSON 日期填充 UITableView 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12059830/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com