16

iOS で新しい Traveling アプリケーションを作成しています。このアプリケーションはマップに大きく依存しており、2 つのマップが含まれます。

  1. 私の最初のマップは、ユーザーが強いネットワーク信号 (Apple マップ) を持っている場合に機能します。
  2. 私の 2 番目のマップは、ネットワークまたは本当に低信号 (オフライン MapBox) でない場合に使用されます。

1 つのアプリケーションに 2 つの異なるマップがあるのはなぜですか? 私のアプリケーションは方向アプリであるため、ユーザーのネットワークが非常に低い場合、またはネットワークがない場合は、オフラインの Map に移動しMapBoxます。また、Apple Maps には Yelp が統合されますが、オフラインの Map には統合されませんMapBox

私の質問: WiFi、4G Lte、および 3G でネットワーク信号を検出するにはどうすればよいですか? MapBox オフライン画像

4

3 に答える 3

40

私の最初の考えは、ファイルのダウンロードの時間を計り、どれくらいの時間がかかるかを確認することでした:

@interface ViewController () <NSURLSessionDelegate, NSURLSessionDataDelegate>

@property (nonatomic) CFAbsoluteTime startTime;
@property (nonatomic) CFAbsoluteTime stopTime;
@property (nonatomic) long long bytesReceived;
@property (nonatomic, copy) void (^speedTestCompletionHandler)(CGFloat megabytesPerSecond, NSError *error);

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    [self testDownloadSpeedWithTimout:5.0 completionHandler:^(CGFloat megabytesPerSecond, NSError *error) {
        NSLog(@"%0.1f; error = %@", megabytesPerSecond, error);
    }];
}

/// Test speed of download
///
/// Test the speed of a connection by downloading some predetermined resource. Alternatively, you could add the
/// URL of what to use for testing the connection as a parameter to this method.
///
/// @param timeout             The maximum amount of time for the request.
/// @param completionHandler   The block to be called when the request finishes (or times out).
///                            The error parameter to this closure indicates whether there was an error downloading
///                            the resource (other than timeout).
///
/// @note                      Note, the timeout parameter doesn't have to be enough to download the entire
///                            resource, but rather just sufficiently long enough to measure the speed of the download.

- (void)testDownloadSpeedWithTimout:(NSTimeInterval)timeout completionHandler:(nonnull void (^)(CGFloat megabytesPerSecond, NSError * _Nullable error))completionHandler {
    NSURL *url = [NSURL URLWithString:@"http://insert.your.site.here/yourfile"];

    self.startTime = CFAbsoluteTimeGetCurrent();
    self.stopTime = self.startTime;
    self.bytesReceived = 0;
    self.speedTestCompletionHandler = completionHandler;

    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration ephemeralSessionConfiguration];
    configuration.timeoutIntervalForResource = timeout;
    NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
    [[session dataTaskWithURL:url] resume];
}

- (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data {
    self.bytesReceived += [data length];
    self.stopTime = CFAbsoluteTimeGetCurrent();
}

- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error {
    CFAbsoluteTime elapsed = self.stopTime - self.startTime;
    CGFloat speed = elapsed != 0 ? self.bytesReceived / (CFAbsoluteTimeGetCurrent() - self.startTime) / 1024.0 / 1024.0 : -1;

    // treat timeout as no error (as we're testing speed, not worried about whether we got entire resource or not

    if (error == nil || ([error.domain isEqualToString:NSURLErrorDomain] && error.code == NSURLErrorTimedOut)) {
        self.speedTestCompletionHandler(speed, nil);
    } else {
        self.speedTestCompletionHandler(speed, error);
    }
}

@end

これは、接続を開始する待ち時間を含む速度を測定することに注意してください。その初期レイテンシーを除外したい場合は、startTime代わりにで初期化することもできます。didReceiveResponse


振り返ってみると、アプリにとって実際的なメリットのないものをダウンロードするのに時間や帯域幅を費やすのは好きではありません。MKMapViewそこで、別の方法として、はるかに現実的なアプローチを提案することもできます: マップを開いて、マップのダウンロードが完了するまでにかかる時間を確認してみませんか? 失敗した場合、または一定以上の時間がかかる場合は、オフライン マップに切り替えます。繰り返しになりますが、ここにはかなりの変動性があります (ネットワークの帯域幅と遅延のためだけでなく、一部のマップ イメージがキャッシュされているように見えるため) kMaximumElapsedTime。 (つまり、積極的に低い値を使用しないでください)。

これを行うには、View Controller を の に設定してdelegateくださいMKMapView。そして、次のことができます:

@interface ViewController () <MKMapViewDelegate>
@property (nonatomic, strong) NSDate *startDate;
@end

static CGFloat const kMaximumElapsedTime = 5.0;

@implementation ViewController

// insert the rest of your implementation here

#pragma mark - MKMapViewDelegate methods

- (void)mapViewWillStartLoadingMap:(MKMapView *)mapView {
    NSDate *localStartDate = [NSDate date];
    self.startDate = localStartDate;

    double delayInSeconds = kMaximumElapsedTime;
    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
    dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
        // Check to see if either:
        //   (a) start date property is not nil (because if it is, we 
        //       finished map download); and
        //   (b) start date property is the same as the value we set
        //       above, as it's possible this map download is done, but
        //       we're already in the process of downloading the next
        //       map.

        if (self.startDate && self.startDate == localStartDate)
        {
            [[[UIAlertView alloc] initWithTitle:nil
                                        message:[NSString stringWithFormat:@"Map timed out after %.1f", delayInSeconds]
                                       delegate:nil
                              cancelButtonTitle:@"OK"
                              otherButtonTitles:nil] show];
        }
    });
}

- (void)mapViewDidFailLoadingMap:(MKMapView *)mapView withError:(NSError *)error {
    self.startDate = nil;

    [[[UIAlertView alloc] initWithTitle:nil
                                message:@"Online map failed"
                               delegate:nil
                      cancelButtonTitle:@"OK"
                      otherButtonTitles:nil] show];
}

- (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView
{
    NSTimeInterval elapsed = [[NSDate date] timeIntervalSinceDate:self.startDate];
    self.startDate = nil;
    self.statusLabel.text = [NSString stringWithFormat:@"%.1f seconds", elapsed];
}
于 2013-01-29T13:44:28.733 に答える
1

Google検索が役立つと思います。

StackOverflow の次のスレッドに注意してください—</p>

iOS wifi スキャン、信号強度

iPhoneの信号強度

したがって、プライベート API を使用せずにこれを行うことはまだできないと思います。

于 2013-01-26T02:46:25.997 に答える