檢測ios的使用者是否拒絕開啟預設位置的實現

來源:互聯網
上載者:User

原問題描述:請問一下,檢測ios的使用者是否拒絕開啟預設位置,能實現嗎?我需要在實現檢測結果,然後根據他們的選擇顯示不同的視圖控制器。解決方案:假設你使用LocationManager,那麼在delegate中有個方法是[plain]  - (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error   你來檢測這個error.code是什麼,具體參見apple官方文檔Core Location Constants Reference中CLError部分[plain]  enum {  kCLErrorLocationUnknown  = 0,         // location is currently unknown, but CL will keep trying  kCLErrorDenied,                       // CL access has been denied (eg, user declined location use)  kCLErrorNetwork,                      // general, network-related error  kCLErrorHeadingFailure,               // heading could not be determined  kCLErrorRegionMonitoringDenied,       // Location region monitoring has been denied by the user  kCLErrorRegionMonitoringFailure,      // A registered region cannot be monitored  kCLErrorRegionMonitoringSetupDelayed, // CL could not immediately initialize region monitoring  kCLErrorRegionMonitoringResponseDelayed, // While events for this fence will be delivered, delivery will not occur immediately  kCLErrorGeocodeFoundNoResult,         // A geocode request yielded no result  kCLErrorGeocodeFoundPartialResult,    // A geocode request yielded a partial result  kCLErrorGeocodeCanceled,              // A geocode request was cancelled  kCLErrorDeferredFailed,               // Deferred mode failed  kCLErrorDeferredNotUpdatingLocation,  // Deferred mode failed because location updates disabled or paused  kCLErrorDeferredAccuracyTooLow,       // Deferred mode not supported for the requested accuracy  kCLErrorDeferredDistanceFiltered,     // Deferred mode does not support distance filters  kCLErrorDeferredCanceled,             // Deferred mode request canceled a previous request  };  typedef NSInteger CLError;   

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.