我有一个奇怪的问题。我有一个在 Xcode 3 的 iPhone 模拟器上运行良好的代码,但是当我使用 iPhone 3G 进行调试时,它会跳过一部分代码。
我有一个UITableView
从服务器上的 CSV 获取数据(它可以读取文件,我已经用日志测试过),但没有填充表。所以我发现它完全跳过了cellForRowAtIndexPath:
方法。
这是代码:
- (void)viewDidLoad {
[super viewDidLoad];
//Inizializzo la posizione di partenza e calcolo distanza
CLLocation *startPos = [[CLLocation alloc]initWithLatitude:ST_LAT longitude:ST_LONG];
CLLocationDistance distanza = [posizione distanceFromLocation:startPos];
NSLog(@"Latitudine: %f",posizione.coordinate.latitude);
NSLog(@"Longitudine: %f",posizione.coordinate.longitude);
NSLog(@"Distanza (in metri): %f",distanza);
//Creo una lista temporaneamente non ordinata
NSMutableArray *listaNonOrdinata = [[NSMutableArray alloc]init];
//Prelevo dati da CSV e li inserisco in record
// NSString *fileString = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Lista1" ofType:@"csv"] encoding:NSUTF8StringEncoding error:nil];
NSString *fileString = [NSString stringWithContentsOfURL:[NSURL URLWithString:URL_CSV] encoding:NSUTF8StringEncoding error:nil];
NSLog(@"fileString: %@", fileString);
record = [fileString csvRows];
//Inserisco titolo
self.navigationItem.title = [[record objectAtIndex:0]objectAtIndex:C_TIPOLOGIA];
//Creo oggetto doppio per verificare se è presente più di una volta
id doppio = nil;
//Controllo tutto il record e inserisco nella listaNonOrdinata solo i dati singoli
//se il dato è doppio inserisco il rispettivo BOOL
for (int i=1; i < record.count; i++) {
//Carico un array temporaneo con tutti gli oggetti con chiave Item
NSMutableArray *temp = [[NSMutableArray alloc]init];
for (int j=0; j < listaNonOrdinata.count; j++) {
[temp addObject:[[listaNonOrdinata objectAtIndex:j]objectForKey:@"Item"]];
}
//Controllo che nessuno di questi sia già presente
doppio = [[record objectAtIndex:i] firstObjectCommonWithArray:temp];
[temp release];
//Inizializzo posizione oggetto
NSNumberFormatter *form = [[NSNumberFormatter alloc]init];
NSNumber *lat = [form numberFromString:[[record objectAtIndex:i]objectAtIndex:C_LAT]];
NSNumber *longit = [form numberFromString:[[record objectAtIndex:i]objectAtIndex:C_LONG]];
[form release];
CLLocation *posObj = [[CLLocation alloc]initWithLatitude:(CLLocationDegrees)[lat floatValue]
longitude:(CLLocationDegrees)[longit floatValue]];
//Se mi trovo nel raggio
if (distanza < RAGGIO) {
//Controllo che l'oggetto si trovi entro il raggio
if ([posObj distanceFromLocation:startPos] < RAGGIO) {
//Se non è doppio lo inserisco con Bool NO
if (doppio == nil) {
NSMutableDictionary *dizionario = [[NSMutableDictionary alloc]init];
[dizionario setObject:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA] forKey:@"Item"];
[dizionario setObject:[NSNumber numberWithBool:NO] forKey:@"Bool"];
[listaNonOrdinata addObject:dizionario];
[dizionario release];
} else {
//Cerco l'elemento doppio e gli sostituisco il Bool a YES
for (int j=0; j < listaNonOrdinata.count; j++) {
if ([[[listaNonOrdinata objectAtIndex:j]objectForKey:@"Item"] isEqualToString:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA]]) {
NSMutableDictionary *dizionario = [[NSMutableDictionary alloc]init];
[dizionario setObject:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA] forKey:@"Item"];
[dizionario setObject:[NSNumber numberWithBool:YES] forKey:@"Bool"];
[listaNonOrdinata replaceObjectAtIndex:j withObject:dizionario];
[dizionario release];
break;
}
}
}
}
} else {
//Controllo che l'oggetto si trovi fuori dal raggio
if ([posObj distanceFromLocation:startPos] > RAGGIO) {
//Se non è doppio lo inserisco con Bool NO
if (doppio == nil) {
NSMutableDictionary *dizionario = [[NSMutableDictionary alloc]init];
[dizionario setObject:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA] forKey:@"Item"];
[dizionario setObject:[NSNumber numberWithBool:NO] forKey:@"Bool"];
[listaNonOrdinata addObject:dizionario];
[dizionario release];
} else {
//Cerco l'elemento doppio e gli sostituisco il Bool a YES
for (int j=0; j < listaNonOrdinata.count; j++) {
if ([[[listaNonOrdinata objectAtIndex:j]objectForKey:@"Item"] isEqualToString:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA]]) {
NSMutableDictionary *dizionario = [[NSMutableDictionary alloc]init];
[dizionario setObject:[[record objectAtIndex:i]objectAtIndex:C_TIPOLOGIA] forKey:@"Item"];
[dizionario setObject:[NSNumber numberWithBool:YES] forKey:@"Bool"];
[listaNonOrdinata replaceObjectAtIndex:j withObject:dizionario];
[dizionario release];
break;
}
}
}
}
}
}
//Ordino listaNonOrdinata in ordine alfabetico
lista = [[NSArray alloc]init];
NSComparator comparatore = ^NSComparisonResult(id aDictionary, id anotherDictionary) {
return [[aDictionary objectForKey:@"Item"] localizedCaseInsensitiveCompare:[anotherDictionary objectForKey:@"Item"]];
};
lista = [listaNonOrdinata sortedArrayUsingComparator:comparatore];
[listaNonOrdinata release];
[startPos release];
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
//Retain:
[lista retain];
[record retain];
}
- (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 lista.count;
}
// Customize the appearance of table view cells.
- (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] autorelease];
}
// Configure the cell...
NSString *cellValue = [[lista objectAtIndex:indexPath.row]objectForKey:@"Item"];
cell.textLabel.text = cellValue;
NSLog(@"dettaglio bool Value: %@",[[[lista objectAtIndex:indexPath.row]objectForKey:@"Bool"]boolValue] ? @"YES" : @"NO");
if ([[[lista objectAtIndex:indexPath.row]objectForKey:@"Bool"]boolValue]) {
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
[cellValue release];
return cell;
}
代码对于其他功能来说有点复杂,但是应该有必要理解问题。
编辑: 我已经解决了这个问题。它没有执行那段代码,因为 lista.count 仍然为 0,并且由于 csv 中的错误格式字符串到数字而未被填充。我只是换了一个“。” 在每个问题中都有一个“,然后它起作用了......我不明白为什么模拟器可以与设备一起使用不,也许PC可以毫无问题地接受逗号和点