有人可以帮我按距离对数组进行排序并在 TableView 中显示吗?我创建了一个属性“sortedArray”并进行了综合。我创建了一个“sortList”方法并在 didUpdateToLocation 下调用它。但是,它似乎没有对数组进行排序,或者我没有将更新的结果放入我的 TableView 中。
@property(nonatomic, strong) NSArray *sortedArray;
-(NSArray *) sortList;
-(NSMutableArray *) barList;
@synthesize sortedArray;
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
currentLoc = newLocation;
if (newLocation.horizontalAccuracy <= 100.0f) {
[locMgr stopUpdatingLocation];
}
NSLog(@"Lat: %f, Long: %f", currentLoc.coordinate.latitude, currentLoc.coordinate.longitude);
[self barList];
[self sortList];
[self.tableView reloadData];
}
-(NSMutableArray *) barList{
theauthors = [[NSMutableArray alloc] init];
@try {
NSFileManager *fileMgr = [NSFileManager defaultManager];
NSString *dbPath = [[[NSBundle mainBundle] resourcePath ]stringByAppendingPathComponent:@"TulsaBars.sqlite"];
BOOL success = [fileMgr fileExistsAtPath:dbPath];
if(!success)
{
NSLog(@"Cannot locate database file '%@'.", dbPath);
}
if(!(sqlite3_open([dbPath UTF8String], &db) == SQLITE_OK))
{
NSLog(@"An error has occured: %@", sqlite3_errmsg(db));
}
const char *sql = "SELECT * FROM TulsaBars";
sqlite3_stmt *sqlStatement;
if(sqlite3_prepare(db, sql, -1, &sqlStatement, NULL) != SQLITE_OK)
{
NSLog(@"Problem with prepare statement: %@", sqlite3_errmsg(db));
}else{
while (sqlite3_step(sqlStatement)==SQLITE_ROW) {
Author * author = [[Author alloc] init];
author.barName = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement,1)];
author.barAddress = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement,2)];
author.barState = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement, 5)];
author.barLat = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement, 8)];
author.barLong = [NSString stringWithUTF8String:(char *) sqlite3_column_text(sqlStatement, 9)];
if (currentLoc == nil) {
NSLog(@"current location is nil %@", currentLoc);
}else{
CLLocation *barLocation = [[CLLocation alloc] initWithLatitude:[author.barLat doubleValue] longitude:[author.barLong doubleValue]];
CLLocationDistance distancekm = [currentLoc distanceFromLocation: barLocation]/1000;
NSString *distanceString = [[NSString alloc] initWithFormat: @"%f", distancekm];
author.cachedDist = distanceString;
[theauthors addObject:author];
}
}
}
sqlite3_finalize(sqlStatement);
}
@catch (NSException *exception) {
NSLog(@"Problem with prepare statement: %@", sqlite3_errmsg(db));
}
@finally {
sqlite3_close(db);
return theauthors;
}
}
-(NSArray *) sortList{
NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"cachedDist" ascending:YES];
sortedArray = [theauthors sortedArrayUsingDescriptors:[NSArray arrayWithObject:descriptor]];
return sortedArray;
}