我有一个方案,我必须在UILables
中提出更新TableViewCell
的API请求。
问题是,对于每个单元格,我必须发出唯一API
请求。 API
网址相同,但参数不同。
目前我正在cellForRowAtIndex
拨打电话,并且在成功模块中我使用dispatch_async
来更新数组并重新加载UITableView
。
我的cellForRowAtIndexMethod
:
if(!apiResponded) //Bool value to check API hasn't responded I have to make API request
{
cell.authorLabel.text = @"-------";// Set Nil
NSString *userId =[CacheHandler getUserId];
[self.handleAPI getAuthorList:userId]; //make API Call
}
else
{
cell.authorLabel.text = [authorArray objectAtIndex:indexPath.row];// authorArray is global Array
}
我的成功阻止API请求:
numOfCallsMade = numOfCallsMade+1; //To track how manny calls made
apiResponded = YES; // to check API is reponded and I have to update the UILables
dispatch_async(kBgQueue, ^{
if(!authorArray)
authorArray = [[NSMutableArray alloc]init];
NSArray *obj = [responseData valueForKey:@"aName"];
if(obj == nil)
{
[authorArray addObject:@"N/A"];
}
else
{
[authorArray addObject:[obj valueForKey:@"authorName"]];
}
dispatch_async(dispatch_get_main_queue(), ^{
if(numOfCallsMade == [self.mCarsArray count]) // this is to check if I have 10 rows the 10 API request is made then only update
[self.mTableView reloadData];
});
});
当我运行此代码时,我为每个Label获取相同的值。我不知道我的方法是好还是不好。请任何人建议如何实现这一点。
答案 0 :(得分:1)
从您的代码中,我不确定您想要实现的目标。我所知道的是,您希望每个单元格发出请求,并显示接收到的数据。现在我不知道你想如何存储你的数据,或者你是如何设置的,但我会给你一个简单的建议,告诉你如何设置它,然后你可以根据需要进行修改。 / p>
我假设您只需要为每个单元格发出一次此请求。为简单起见,我们因此可以存储接收数据的字典(作者姓名?)。
@property (nonatomic, strong) NSMutableDictionary *authorNames;
我们需要在使用之前,在init或ViewDidLoad中,或者在你认为合适的任何地方实例化它(只要它在TableView调用cellForRowAtIndexPath之前)。
authorNames = [[NSMutableDictionary alloc] init];
现在在cellForRowAtIndexPath中,您可以执行以下操作:
NSInteger index = indexPath.row
cell.authorLabel.text = nil;
cell.tag = index
NSString *authorName = authorNames[@(index)];
if (authorName) { // Check if name has already exists
cell.authorLabel.text = authorName;
} else {
// Make request here
}
在您的请求完成块(在CellForRowAtIndexPath :)中,添加以下内容:
NSString *authorName = [responseData valueForKey:@“aName”];
authorNames[@(index)] = authorName; // Set the name for that index
if (cell.index == index) { // If the cell is still being used for the same index
cell.authorLabel.text = authorName;
}
在TableView中向上和向下滚动时,它将重复使用在屏幕外滚动的单元格。这意味着当请求完成时,单元格可能已在屏幕外滚动并重新用于另一个索引。因此,您需要设置单元格标记,并在请求完成时检查该单元格是否仍用于您请求的索引。
潜在问题:当快速向上和向下滚动时,当您的请求仍在加载时,它可能会为每个单元格发出多个请求。你必须添加一些方法来让每个请求一次。
答案 1 :(得分:0)
您可以在自定义单元格中声明一个方法,然后从cellForRowAtIndex调用它,该方法将调用API并更新仅存在于该单元格中的标签。 因此,对于每个单元格,您将有单独的方法调用&每个成功块仅更新特定单元格标签文本。