gpt4 book ai didi

ios - AFHTTPSessionManager 首次请求加载缓慢

转载 作者:行者123 更新时间:2023-11-29 00:04:59 25 4
gpt4 key购买 nike

我在我的表格 View 中应用了这段代码。但是,我意识到第一次请求时数据加载速度会很慢。之后,如果我访问同一页面,记录将加载得更快。有什么改进第一次加载的想法吗?感谢您的帮助。

AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];

[manager GET:@"http://api.domainname.com/api/abc" parameters:nil progress:nil success:^(NSURLSessionTask *task, id responseObject) {

_serverDataArr = responseObject;
self.dataArr=[NSMutableArray array];

for (NSDictionary *subDic in self.serverDataArr) {

Friend_Model *model=[[Friend_Model alloc]initWithDic:subDic];
[self.dataArr addObject:model];
}

_rowArr=[Friend_DataHelper getFriendListDataBy:self.dataArr];
_sectionArr=[Friend_DataHelper getFriendListSectionBy:[_rowArr mutableCopy]];

[self.tableView reloadData];


} failure:^(NSURLSessionTask *operation, NSError *error) {

UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Error Retrieving Ninjas"
message:[error localizedDescription]
preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"Ok"
style:UIAlertActionStyleCancel
handler:nil];

[alertVC addAction:okAction];

[self presentViewController:alertVC animated:YES completion:nil];
}];

这是我的 cellForRowAtIndexPath 代码:-

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellIde=@"cellIde";
Friend_TableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIde];
if (cell==nil) {
cell=[[Friend_TableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIde];
}
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

if (tableView==_searchDisplayController.searchResultsTableView){
NSString *url_Img_FULL = [_searchResultArr[indexPath.row] valueForKey:@"image"];
[cell.headImageView setImageWithURL:[NSURL URLWithString:url_Img_FULL] placeholderImage:[UIImage imageNamed:@"Placeholder.png"]];
[cell.nameLabel setText:[_searchResultArr[indexPath.row] valueForKey:@"name"]];
}else{
Friend_Model *model=_rowArr[indexPath.section][indexPath.row];

[cell.headImageView setImageWithURL:[NSURL URLWithString:model.image] placeholderImage:[UIImage imageNamed:@"Placeholder.png"]];

[cell.nameLabel setText:model.name];
}

return cell;
}

最佳答案

看起来您正在做非常合适的事情来形成请求并呈现结果。您可能会看到第一个和第 n 个请求之间存在很大差异,因为您的后端处于唤醒状态,并且数据已缓存在堆栈上的各个点。除了更早地移动请求之外,这里很难提出太多建议,也许是应用程序启动,用户可能不会注意到那么多的延迟。

另一个想法是根据表格滚动的位置更延迟地请求表格行的数据。当用户在表格底部做出拉动手势时,显示忙碌指示符并获取更多数据。

关于ios - AFHTTPSessionManager 首次请求加载缓慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48333001/

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