在 iPhone 模拟器中设置位置

Set the location in iPhone Simulator

提问人:Cliff 提问时间:10/18/2008 最后编辑:TheNeilCliff 更新时间:11/17/2023 访问量:154471

问:

如何在 iPhone 模拟器中设置位置(在 CoreLocation 服务中选取的位置)?

iphone ios-模拟器 核心位置

评论

0赞 Ohmy 12/5/2014
我为 Xcode 6 添加了一个方法。stackoverflow.com/questions/19694205/......
0赞 Nikos 11/6/2015
有没有人设法让它在 React native、模拟器中工作?
0赞 devdoe 7/8/2019
在iOS 13 beta 2中,我只能看到“无”和“自定义”选项。还有其他人有这个问题吗?stackoverflow.com/q/56733625/1364053

答:

17赞 Ben Gottlieb 10/18/2008 #1

在我的委托回调中,我检查我是否在模拟器 () 中运行,如果是,我提供我自己的、预先查找的纬度/经度。据我所知,没有其他办法。#if TARGET_ IPHONE_SIMULATOR

评论

3赞 progrmr 11/30/2011
从 Xcode 4.2 开始,现在在模拟器的菜单下有一种方法,使用允许设置自定义位置或从一些预定义的游乐设施和位置中进行选择的条目。DebugLocation
0赞 prakash 8/29/2009 #2

迟到总比没有好:)

我刚刚遇到了这个 iSimulate,它允许您将虚假位置发送到应用程序。 该解决方案不是免费的。

> Q: How does iSimulate work? 

> A: When added to your project, the iSimulate
> SDK library creates a listening server
> on your iPhone Simulator that waits
> for a connection from an iPhone/iPod
> running the iSimulate client. When
> such connection is established, the
> iSimulate client running on your
> iPhone/iPod captures all data from the
> accelerometer sensor, the touch
> events, the location and device ID and
> streams them to the server. The
> iSimulate SDK library then recreates
> all input events synthetically. This
> is entirely transparent to your
> application and does not interfere
> with your application's functionality.

无论如何,我打算得到这个。将很快更新更多!

评论

0赞 Simon Woodside 9/2/2009
我刚刚联系了开发人员:“在iSimulate的选项中,可以从”选择要连接的计算机“屏幕的右上角按钮访问,您可以选择其他四个位置之一来使用。所以,真的没有多大帮助。
0赞 Pierre 1/30/2017
bitbucket.org/gnucoop/xamarin-ios-simulator-enhancements这有助于免费模拟位置
0赞 Rahul Vyas 11/7/2009 #3

您想在哪里设置您的位置?您可以使用 MapKit API 来显示您的位置。有关如何使用 MapKit 的更多详细信息,请参见 icodeblog.com。此外,您可以存储所需的cordinates,只需创建一个对象CLLocation2D *location; location.longitude=您想要的经度值; location.latitude=您想要的纬度值;

评论

0赞 Cliff 11/8/2009
这是我刚接触 SDK 时的一个老问题。我现在意识到不支持在模拟器中自动执行 CoreLocation,这很遗憾。
3赞 Claus Broch 2/21/2011 #4

FutureTap 的好心人已经在 GitHub 上免费提供了 FTLocationSimulator。它允许您使用 Google Earth 等方式准备测试路线,然后让模拟器将这些坐标提供给您的应用程序。

我写了一篇关于如何使用 FTLocationSimulator 在测试位置要素期间在多条路线之间轻松切换的博客文章

5赞 Zsolt 8/19/2011 #5

您可以将 GPX 文件添加到您的项目中并使用它:编辑方案>选项>允许位置模拟>选择包含例如以下内容的文件名:

<?xml version="1.0"?>
<gpx version="1.1" creator="Xcode"> 
    <wpt lat="41.92296" lon="-87.63892"></wpt>
</gpx>

(可选)只需对位置管理器返回的纬度/纬度值进行硬编码。不过,这是老式的。

因此,您不会将其添加到模拟器中,而是添加到您的 Xcode 项目中。

评论

2赞 Shreyash Mahajan 8/23/2011
如何使用预定义的位置。你能详细解释一下吗???我想知道它。
0赞 Mumthezir VP 12/15/2015
单击“xcode”,然后单击“产品>方案”>“编辑方案>核心位置”
139赞 Robert Altman 11/18/2011 #6

从 iOS 5 开始,模拟器具有可配置的位置。

在“调试”菜单下,最后一个条目是“位置”;这为您提供了一个子菜单,其中包含:

  • 没有
  • 自定义位置
  • Apple Store 零售店
  • 苹果
  • 城市自行车骑行
  • 城市奔跑
  • 高速公路驱动器

自定义位置允许您输入经度/经度值。骑自行车、城市奔跑和高速公路行驶都是对移动位置的模拟(当然是在库比蒂诺)。

当然,这对 iOS 4(或更早版本)的调试没有任何帮助;但这是一个明显的改进!

评论

0赞 Lucky_girl 2/6/2018
IOS模拟器中的调试菜单在哪里?
1赞 Lance Samaria 9/28/2019
这有效,但它适用于模拟器上的调试菜单,而不是 Xcode 上的菜单
13赞 Sludge 6/9/2020
对于 iOS 模拟器,它现在位于“功能”下
0赞 kodeKhalifa 2/6/2022
对于使用 iOS 15.2 的最新版本的模拟器,“位置”现在位于“功能”菜单下
0赞 Scott Daniel 5/18/2022
我正在运行 iphone 12 模拟器,位置只有两个选项,无和自定义。我应该尝试其他模拟器吗?
6赞 Niels Castle 2/10/2012 #7

在 iOS 5 之前,你可以用代码来完成:

我在需要假标题和位置数据的类之前使用此代码段。@implementation

#if (TARGET_IPHONE_SIMULATOR)
@interface MyHeading : CLHeading
    -(CLLocationDirection) magneticHeading;
    -(CLLocationDirection) trueHeading;
@end

@implementation MyHeading
    -(CLLocationDirection) magneticHeading { return 90; }
    -(CLLocationDirection) trueHeading { return 91; }
@end

@implementation CLLocationManager (TemporaryLocationFix)
- (void)locationFix {
    CLLocation *location = [[CLLocation alloc] initWithLatitude:55.932 longitude:12.321];
    [[self delegate] locationManager:self didUpdateToLocation:location fromLocation:nil];

    id heading  = [[MyHeading alloc] init];
    [[self delegate] locationManager:self didUpdateHeading: heading];
}

-(void)startUpdatingHeading {
    [self performSelector:@selector(locationFix) withObject:nil afterDelay:0.1];
}

- (void)startUpdatingLocation {
    [self performSelector:@selector(locationFix) withObject:nil afterDelay:0.1];
}
@end
#endif

在iOS 5之后,只需在项目中包含一个GPX文件,即可持续更新位置 Hillerød.gpx:

<?xml version="1.0"?>
<gpx version="1.1" creator="Xcode"> 
    <wpt lat="55.93619760" lon="12.29131930"></wpt>
    <wpt lat="55.93625770" lon="12.29108330"></wpt>
    <wpt lat="55.93631780" lon="12.29078290"></wpt>
    <wpt lat="55.93642600" lon="12.29041810"></wpt>
    <wpt lat="55.93653420" lon="12.28998890"></wpt>
    <wpt lat="55.93660630" lon="12.28966710"></wpt>
    <wpt lat="55.93670240" lon="12.28936670"></wpt>
    <wpt lat="55.93677450" lon="12.28921650"></wpt>
    <wpt lat="55.93709900" lon="12.28945250"></wpt>
    <wpt lat="55.93747160" lon="12.28949540"></wpt>
    <wpt lat="55.93770000" lon="12.28966710"></wpt>
    <wpt lat="55.93785620" lon="12.28977440"></wpt>
    <wpt lat="55.93809660" lon="12.28988170"></wpt>
    <wpt lat="55.93832490" lon="12.28994600"></wpt>
    <wpt lat="55.93845710" lon="12.28996750"></wpt>
    <wpt lat="55.93856530" lon="12.29007480"></wpt>
    <wpt lat="55.93872150" lon="12.29013910"></wpt>
    <wpt lat="55.93886570" lon="12.28975290"></wpt>
    <wpt lat="55.93898590" lon="12.28955980"></wpt>
    <wpt lat="55.93910610" lon="12.28919500"></wpt>
    <wpt lat="55.93861330" lon="12.28883020"></wpt>
    <wpt lat="55.93845710" lon="12.28868000"></wpt>
    <wpt lat="55.93827680" lon="12.28850840"></wpt>
    <wpt lat="55.93809660" lon="12.28842250"></wpt>
    <wpt lat="55.93796440" lon="12.28831520"></wpt>
    <wpt lat="55.93780810" lon="12.28810070"></wpt>
    <wpt lat="55.93755570" lon="12.28790760"></wpt>
    <wpt lat="55.93739950" lon="12.28775730"></wpt>
    <wpt lat="55.93726730" lon="12.28767150"></wpt>
    <wpt lat="55.93707500" lon="12.28760710"></wpt>
    <wpt lat="55.93690670" lon="12.28734970"></wpt>
    <wpt lat="55.93675050" lon="12.28726380"></wpt>
    <wpt lat="55.93649810" lon="12.28713510"></wpt>
    <wpt lat="55.93625770" lon="12.28687760"></wpt>
    <wpt lat="55.93596930" lon="12.28679180"></wpt>
    <wpt lat="55.93587310" lon="12.28719940"></wpt>
    <wpt lat="55.93575290" lon="12.28752130"></wpt>
    <wpt lat="55.93564480" lon="12.28797190"></wpt>
    <wpt lat="55.93554860" lon="12.28833670"></wpt>
    <wpt lat="55.93550050" lon="12.28868000"></wpt>
    <wpt lat="55.93535630" lon="12.28900190"></wpt>
    <wpt lat="55.93515200" lon="12.28936670"></wpt>
    <wpt lat="55.93505580" lon="12.28958120"></wpt>
    <wpt lat="55.93481550" lon="12.29001040"></wpt>
    <wpt lat="55.93468320" lon="12.29033230"></wpt>
    <wpt lat="55.93452700" lon="12.29063270"></wpt>
    <wpt lat="55.93438280" lon="12.29095450"></wpt>
    <wpt lat="55.93425050" lon="12.29121200"></wpt>
    <wpt lat="55.93413040" lon="12.29140520"></wpt>
    <wpt lat="55.93401020" lon="12.29168410"></wpt>
    <wpt lat="55.93389000" lon="12.29189870"></wpt>
    <wpt lat="55.93372170" lon="12.29239220"></wpt>
    <wpt lat="55.93385390" lon="12.29258530"></wpt>
    <wpt lat="55.93409430" lon="12.29295010"></wpt>
    <wpt lat="55.93421450" lon="12.29320760"></wpt>
    <wpt lat="55.93433470" lon="12.29333630"></wpt>
    <wpt lat="55.93445490" lon="12.29350800"></wpt>
    <wpt lat="55.93463520" lon="12.29374400"></wpt>
    <wpt lat="55.93479140" lon="12.29410880"></wpt>
    <wpt lat="55.93491160" lon="12.29419460"></wpt>
    <wpt lat="55.93515200" lon="12.29458090"></wpt>
    <wpt lat="55.93545250" lon="12.29494570"></wpt>
    <wpt lat="55.93571690" lon="12.29505300"></wpt>
    <wpt lat="55.93593320" lon="12.29513880"></wpt>
    <wpt lat="55.93617360" lon="12.29522460"></wpt>
    <wpt lat="55.93622170" lon="12.29537480"></wpt>
    <wpt lat="55.93713510" lon="12.29505300"></wpt>
    <wpt lat="55.93776000" lon="12.29378700"></wpt>
    <wpt lat="55.93904600" lon="12.29531040"></wpt>
    <wpt lat="55.94004350" lon="12.29552500"></wpt>
    <wpt lat="55.94023570" lon="12.29561090"></wpt>
    <wpt lat="55.94019970" lon="12.29591130"></wpt>
    <wpt lat="55.94017560" lon="12.29629750"></wpt>
    <wpt lat="55.94017560" lon="12.29670520"></wpt>
    <wpt lat="55.94017560" lon="12.29713430"></wpt>
    <wpt lat="55.94019970" lon="12.29754200"></wpt>
    <wpt lat="55.94024780" lon="12.29816430"></wpt>
    <wpt lat="55.94051210" lon="12.29842180"></wpt>
    <wpt lat="55.94084860" lon="12.29820720"></wpt>
    <wpt lat="55.94105290" lon="12.29799270"></wpt>
    <wpt lat="55.94123320" lon="12.29777810"></wpt>
    <wpt lat="55.94140140" lon="12.29749910"></wpt>
    <wpt lat="55.94142550" lon="12.29726310"></wpt>
    <wpt lat="55.94147350" lon="12.29687690"></wpt>
    <wpt lat="55.94155760" lon="12.29619020"></wpt>
    <wpt lat="55.94161770" lon="12.29576110"></wpt>
    <wpt lat="55.94148550" lon="12.29531040"></wpt>
    <wpt lat="55.94093270" lon="12.29522460"></wpt>
    <wpt lat="55.94041600" lon="12.29518170"></wpt>
    <wpt lat="55.94056020" lon="12.29398010"></wpt>
    <wpt lat="55.94024780" lon="12.29352950"></wpt>
    <wpt lat="55.94001940" lon="12.29335780"></wpt>
    <wpt lat="55.93992330" lon="12.29325050"></wpt>
    <wpt lat="55.93969490" lon="12.29299300"></wpt>
    <wpt lat="55.93952670" lon="12.29277840"></wpt>
    <wpt lat="55.93928630" lon="12.29260680"></wpt>
    <wpt lat="55.93915410" lon="12.29232780"></wpt>
    <wpt lat="55.93928630" lon="12.29202740"></wpt>
    <wpt lat="55.93933440" lon="12.29174850"></wpt>
    <wpt lat="55.93947860" lon="12.29116910"></wpt>
    <wpt lat="55.93965890" lon="12.29095450"></wpt>
    <wpt lat="55.94001940" lon="12.29061120"></wpt>
    <wpt lat="55.94041600" lon="12.29084730"></wpt>
    <wpt lat="55.94076450" lon="12.29101890"></wpt>
    <wpt lat="55.94080060" lon="12.29065410"></wpt>
    <wpt lat="55.94086060" lon="12.29031080"></wpt>
    <wpt lat="55.94092070" lon="12.28990310"></wpt>
    <wpt lat="55.94099280" lon="12.28975290"></wpt>
    <wpt lat="55.94119710" lon="12.28986020"></wpt>
    <wpt lat="55.94134130" lon="12.28998890"></wpt>
    <wpt lat="55.94147350" lon="12.29007480"></wpt>
    <wpt lat="55.94166580" lon="12.29003190"></wpt>
    <wpt lat="55.94176190" lon="12.28938810"></wpt>
    <wpt lat="55.94183400" lon="12.28893750"></wpt>
    <wpt lat="55.94194220" lon="12.28850840"></wpt>
    <wpt lat="55.94199030" lon="12.28835820"></wpt>
    <wpt lat="55.94215850" lon="12.28859420"></wpt>
    <wpt lat="55.94250700" lon="12.28883020"></wpt>
    <wpt lat="55.94267520" lon="12.28893750"></wpt>
    <wpt lat="55.94284350" lon="12.28902330"></wpt>
    <wpt lat="55.94304770" lon="12.28915210"></wpt>
    <wpt lat="55.94325200" lon="12.28925940"></wpt>
    <wpt lat="55.94348030" lon="12.28953830"></wpt>
    <wpt lat="55.94366060" lon="12.28966710"></wpt>
    <wpt lat="55.94388890" lon="12.28975290"></wpt>
    <wpt lat="55.94399700" lon="12.28994600"></wpt>
    <wpt lat="55.94379280" lon="12.29065410"></wpt>
    <wpt lat="55.94364860" lon="12.29095450"></wpt>
    <wpt lat="55.94350440" lon="12.29127640"></wpt>
    <wpt lat="55.94340820" lon="12.29155540"></wpt>
    <wpt lat="55.94331210" lon="12.29198450"></wpt>
    <wpt lat="55.94315590" lon="12.29269260"></wpt>
    <wpt lat="55.94310780" lon="12.29318610"></wpt>
    <wpt lat="55.94301170" lon="12.29361530"></wpt>
    <wpt lat="55.94292760" lon="12.29408740"></wpt>
    <wpt lat="55.94290350" lon="12.29436630"></wpt>
    <wpt lat="55.94287950" lon="12.29453800"></wpt>
    <wpt lat="55.94283140" lon="12.29533190"></wpt>
    <wpt lat="55.94274730" lon="12.29606150"></wpt>
    <wpt lat="55.94278340" lon="12.29621170"></wpt>
    <wpt lat="55.94280740" lon="12.29649060"></wpt>
    <wpt lat="55.94284350" lon="12.29679100"></wpt>
    <wpt lat="55.94284350" lon="12.29734890"></wpt>
    <wpt lat="55.94308380" lon="12.29837890"></wpt>
    <wpt lat="55.94315590" lon="12.29852910"></wpt>
    <wpt lat="55.94263920" lon="12.29906550"></wpt>
    <wpt lat="55.94237480" lon="12.29910850"></wpt>
    <wpt lat="55.94220660" lon="12.29915140"></wpt>
    <wpt lat="55.94208640" lon="12.29902260"></wpt>
    <wpt lat="55.94196620" lon="12.29887240"></wpt>
    <wpt lat="55.94176190" lon="12.29794970"></wpt>
    <wpt lat="55.94156970" lon="12.29760640"></wpt>
</gpx>

我使用 GPSies.com 为 gpx 数据创建基本文件。不过,需要进行一些清理。

通过运行模拟器并选择文件进行激活


(来源:castleandersen.dk

89赞 beryllium 9/28/2012 #8
  1. 在 iPhone 模拟器中运行项目
  2. 在以下文件的TextEdit文件中创建,例如将其称为MyOffice。将扩展名设为 .gpxenter image description here

    <?xml version="1.0"?> <gpx version="1.0" creator="MyName"> <wpt lat="53.936166" lon="27.565370"> <name>MyOffice</name> </wpt> </gpx>

  3. 在 Xcode 的“模拟”区域中选择Add GPX File to Project...enter image description here

  4. 将创建的文件从菜单添加到项目中。
  5. 现在,您可以在“模拟”区域中看到您的位置:enter image description here

评论

0赞 10/31/2012
文本编辑不会存储文件 .gpx。我该怎么办?
2赞 beryllium 10/31/2012
将其另存为 .txt(或 .xml),然后重命名为 .gpx
8赞 RyanG 12/20/2012
谢谢!非常简单,效果很好。如果其他人使用它,这里有文本形式的示例GPX文件,以便您可以复制并粘贴它: <?xml version=“1.0”?> <gpx version=“1.0” creator=“Name”> <wpt lat=“” lon=“”> <name>Office</name> </wpt> </gpx>
3赞 Durgaprasad 7/17/2013
我们可以把时间包括在内吗?我想测试startMonitoringSignificantLocationChanges方法
0赞 robotspacer 4/2/2014
这是一篇关于使用 GPX 文件做更多事情的有用帖子:blackpixel.com/blog/2013/05/......
4赞 Atef 10/16/2014 #9

从调试菜单 -> 位置 -> 打开 iOS 模拟器应用程序

  1. 没有
  2. 自定义位置
  3. Apple Store 零售店 ...
26赞 Ravi Chokshi 7/6/2015 #10

在 iOS 模拟器菜单中,转到功能 -> 位置 -> 自定义位置。在那里,您可以设置纬度和经度并相应地测试应用程序。这适用于 mapkit 和 CLLocationManager。

评论

3赞 Yossi 1/31/2021
在模拟器的版本 12.1 中,它位于“功能”-“>位置”-“>自定义位置”中
3赞 s-hunter 3/27/2020 #11

在撰写本文时,IOS模拟器的位置选项已移至功能->位置->自定义位置

12赞 AlessandroSteri 3/31/2020 #12

您可以轻松地将 macOS 地图应用程序中的任何所需位置共享Xcode 模拟器

  1. 在 Xcode 中,像往常一样在模拟器中运行应用程序。
  2. 在macOS上打开地图应用程序(为方便起见,我通常会创建一个新桌面,其中同时具有模拟器和地图应用程序)。
  3. 在地图 (macOS) 中,长按地图上的任意点,或搜索一个地方,让地图在您需要的地方绘制图钉。
  4. 单击图钉,然后单击信息 (i) 图标(见图)。
  5. 在信息视图的右上角,单击共享图标。
  6. 与模拟器共享位置(见图)。
  7. 确认并享受:)

这使您可以快速测试某些位置,了解该位置的地理位置(例如,用于测试地理围栏),并在运行时决定下一步的位置(例如,用于调试和微调内容)。

已在 MacOS Catalina 10.15.4 和 Xcode 11.4 上进行了测试。

评论

0赞 heximal 9/7/2021
太棒了!这些年来,这个不方便的功能让我大吃一惊。我的意思是,当您每次都需要手动设置位置时。我总是问自己,为什么苹果不制作简单的收藏夹位置列表,人们可以添加他使用的任何位置,然后在它们之间轻松切换。
61赞 Samuel Hulla 4/14/2020 #13

XCode 11.3 及更早版本:

Debug -> Location -> Custom Location

enter image description here

XCode 11.4+:

Features -> Location -> Custom Location

enter image description here

找出您拥有的 XCode 版本

$ /usr/bin/xcodebuild -version

评论

1赞 ANDYNVT 3/6/2022
谢谢。这是您应该遵循的最新说明
6赞 Ashutosh Shukla 8/17/2020 #14

从 Xcode 11.6 和 Swift 5.3 开始,模拟自定义位置的功能已从 iOS 模拟器菜单中的“调试”移至“功能”。

0赞 Elmar 9/25/2021 #15

更改模拟器的位置不会影响已生成、已加载的应用。例如,如果您的应用在模拟器上运行了 Google 地图视图,则在您重新构建该应用之前,该地图不会更新。另外,请记住,在输入自定义纬度和经度时,您应该小心带 (-) 符号和不带 (-) 符号的经度。用新的模拟器替换现有的自定义经度,但错误地保留 (-) 符号或输入错误的纬度/经度将导致蓝色背景的空地图屏幕 - 可能表示海洋或极点。

3赞 Jon Schneider 10/15/2021 #16

在 Xcode 本身(而不是模拟器 App)中,可以通过“调试”菜单>“模拟位置”来设置模拟位置。

当应用处于主动状态时(在模拟器上或在真实设备上),该菜单选项将启用。

XCode > Debug menu > Simulate Location > Child menu with list of locations

(自 XCode 13.0 起)

2赞 kodeKhalifa 2/6/2022 #17

从 iOS 15.2 和 Xcode 13.2.2 开始,模拟器具有可配置的位置。

在“功能”菜单下,最后一个条目是“位置”;这为您提供了一个子菜单,其中包含:


自定义位置
城市 城市
自行车 骑行
高速公路 驾驶
苹果

自定义位置允许您输入经度/经度值。骑自行车、城市奔跑和高速公路行驶都是对移动位置的模拟(当然是在库比蒂诺)。

-1赞 WhiteDeer 3/30/2023 #18

这是一个值得一看的好地方

转到“调试”菜单和“模拟位置”

https://sarunw.com/posts/how-to-simulate-location-in-xcode-and-simulator/