17

今はまだ考えていません。

これまで、デバイスが位置情報更新の使用を要求するたびに許可していました。

しかし、今許可していない場合、ロケーションマネージャーは kclErrorDenied を返し、アプリケーションを再起動するまでロケーションマネージャーを再開できません。

したがって、私の質問は、ユーザーにアプリを再起動するようにメッセージを表示する必要があるか、それともロケーション マネージャーの作業を再開するための解決策があるかということです。

ありがとう 。

The Error :
ERROR,Time,288787555.078,Function,"void CLClientHandleDaemonDataRegistration(__CLClient*, const CLDaemonCommToClientRegistration*, const __CFDictionary*)",server did not accept client registration 1
WARNING,Time,288787555.108,Function,"void CLClientHandleDaemonInvalidation(__CFMessagePort*, void*)",client 1308.0 has been disconnected from daemon
 locationManager:didFailWithError:] [Line 244] Error Denied :Error Domain=kCLErrorDomain Code=1 "Operation could not be completed. (kCLErrorDomain error 1.)"
4

1 に答える 1

36

実装し- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)errorます。

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
    NSMutableString *errorString = [[[NSMutableString alloc] init] autorelease];

    if ([error domain] == kCLErrorDomain) {

        // We handle CoreLocation-related errors here
    switch ([error code]) {
        // "Don't Allow" on two successive app launches is the same as saying "never allow". The user
        // can reset this for all apps by going to Settings > General > Reset > Reset Location Warnings.
        case kCLErrorDenied:
            //...
            break;
        case kCLErrorLocationUnknown:
            //...
            break;
        default:
            //...
            break;
        }
    } else {
        // We handle all non-CoreLocation errors here
    }
}
于 2010-02-25T11:58:35.443 に答える