I am using one iphone and one other device in my application, both of them have sim card inside.

What I want to do is to trace the location of device from the iphone side. I can get iphone’s location by CoreLocation framework and it works very well. But how can I get the location of device?

Does CoreLocation or other framework provide API function for us to get the location with the argument of specific CellID, IMEI, RSSI or phone number?

1

There are 1 best solutions below

3
On

To make it short: No.
The geolocation service you want to access is called network triangulation and is handled service-provider side. Your app won't get those data from any framework.

EDIT: iOS do use network triangulation and wifi positioning, but you won't have access to that info. All you will get is the processed data from iOS, without being able to know how it found it.