Strange GPS fix behavior on 3g iPhone -


i wrote gps enabled iphone app needs 70m accuracy. in cases accuracy reached after few seconds waiting. on occasions never reached. have restart iphone , app , fix acquired immediately.

some users told me starting different app uses gps, close app , starting app again fixes problem well. not sure if works, because couldn't test myself.

the problem occurs on 3g iphones not on 3gs.

any idea happening or how can fix in code, don't have reboot iphone?

edit: code use:

locationmanager = [[cllocationmanager alloc] init]; [locationmanager setdesiredaccuracy:kcllocationaccuracybest]; locationmanager.distancefilter = kcldistancefilternone; locationmanager.delegate = self; [locationmanager startupdatinglocation]; 

i'm seeing same behavior in own gps-centric app. 3g tends narrow in more 3gs. can figure far 3g's gps got improved 3gs.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -