gpt4 book ai didi

ios - 我怎样才能提高这个性能?

转载 作者:行者123 更新时间:2023-11-29 10:56:15 25 4
gpt4 key购买 nike

我有一个基于 UITabBarController 的应用:

1) 从网络获取数据并将其解析为 CD(这工作正常)。 [在选项卡 1 中]2) 然后当第二个选项卡 [In Tab 2] 被选中时,它运行这个方法:

{ viewDidLoad > loadRecordsFromCD (performBlockAndWait) > populateLocationsToSort }

- (void)populateLocationsToSort {

//1. Get UserLocation based on mapview
self.userLocation = [[CLLocation alloc] initWithLatitude:self.userLocation.coordinate.latitude longitude:self.userLocation.coordinate.longitude];

// Loop thru dictionary-->Create locations
// 2. Loop thru dictionary to get Custom Objects
for (Location * locationObject in self.farSiman) {
// 3. Unload objects values into locals

//PARSE ALL DATA
NSString *coordenadas = locationObject.coordenadas;
NSArray *coordinatesArray = [coordenadas componentsSeparatedByString:@","];
NSString * latitude = [coordinatesArray objectAtIndex:0];
NSString * longitude = [coordinatesArray objectAtIndex:1];
NSString * storeDescription = locationObject.nombrePublico;
NSString * address = locationObject.direccion;

NSString * ciudad = locationObject.ciudad;
NSString * horario = locationObject.horario;
NSString * hor_LV = locationObject.hor_LV;
NSString * hor_S = locationObject.hor_S;
NSString * hor_D = locationObject.hor_D;
NSString * telefono = locationObject.telefono;
NSString * celular_TA = locationObject.celular_TA;
NSString * celular_TB = locationObject.celular_TB;
NSString * hrs24 = locationObject.hrs24;
NSString * driveThru = locationObject.driveThru;

//NSString * estado = locationObject.estado;
NSString * estado;

// IF self.open24hrs SELECTED
if (self.open24hrs) {
// Set it based on TimeComparator
if ([TimeComparator dealWithTimeStrings2:locationObject.hor_LV]) {
estado = @"Abierta";
} else {
estado = @"Cerrada";
}
} else {
estado = locationObject.estado;
}


// 4. Create MyLocation object based on locals gotten from Custom Object
CLLocationCoordinate2D coordinate;
coordinate.latitude = latitude.doubleValue;
coordinate.longitude = longitude.doubleValue;
MyLocation *annotation = [[MyLocation alloc] initWithName:storeDescription address:address coordinate:coordinate distance:0 ciudad:ciudad horario:horario telefono:telefono hrs24:hrs24 driveThru:driveThru hor_LV:hor_LV hor_D:hor_D hor_S:hor_S celular_TA:celular_TA celular_TB:celular_TB estado:estado];

// 5. Calculate distance between locations & uL
CLLocation *pinLocation = [[CLLocation alloc] initWithLatitude:annotation.coordinate.latitude longitude:annotation.coordinate.longitude];
CLLocationDistance calculatedDistance = [pinLocation distanceFromLocation:self.userLocation];
annotation.distance = calculatedDistance/1000;

//Add annotation to local NSMArray
[self.annotationsToSort addObject:annotation];
} //ENDS FOR LOOP

//SORT the created annotationsToSort
[self sort];

}

它获取从 CD 提取中填充的数组并从中创建对象。它创建新对象,因为它必须采用 hor_LV 字段,将其解析为日期并将它们与现在进行比较以确定 location.estado。

目前有 84 条记录被提取,我已经注意到从我点击第二个选项卡(这个 tableviewcontroller)到它实际显示在屏幕上的时间存在延迟。

我无法预解析这个数组,因为用户在选项卡 1 上设置了一些过滤器,这些过滤器在从数据库中获取数据之前传递到选项卡 2。所以我知道提取必须在 Tab 2 加载时发生。我的问题是,我可以做些什么来加快速度或不让滞后如此明显?

最佳答案

最好是使用线程来更快地处理数据。此外,它会让您有机会向用户提供一些反馈,使延迟几乎不明显或至少不那么烦人 - 特别是如果您考虑发送数据,即使所有数据都尚未处理。

如果您正在寻找代码优化,我建议您使用分析器并相应地修改代码。

关于ios - 我怎样才能提高这个性能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18255881/

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