get location on iphone ONLY from the GPS - not the wifi network

前端 未结 6 711
刺人心
刺人心 2021-02-03 13:44

i am creating an app that uses location-

everything works swimmingly except one thing-

when i come home my iphone connects to my local wifi network and instead o

6条回答
  •  既然无缘
    2021-02-03 14:15

    Well I did some playing around

    Found some apple documentation that says that [location verticalAccuracy] REQUIRES a device with gps.

    So I stuck this code in (abridged) and based on the limited testing I have done, it appears to be doing what I want:

    if (([location horizontalAccuracy] > 0) && ([location verticalAccuracy] > 0)){
         //report location here
    }
    

    Thanks all for your replies.

提交回复
热议问题