gpt4 book ai didi

ios - 指示无效的 NSUserActivity

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:05:44 26 4
gpt4 key购买 nike

我在使用我的应用程序中的 mapItem 实现 NSUserActivity 时遇到了一些问题。

我想要的只是能够在应用程序切换器中使用“获取路线”建议,就像 Foursquare 所做的那样:

enter image description here

我在我的 viewDidLoad 方法中使用以下代码,在显示我要注册的位置(酒吧)的 View Controller 中。

NSUserActivity *activity = [[NSUserActivity alloc] initWithActivityType:@"co.pubmapper.ViewPub"];

CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(self.pub.lat, self.pub.lng);
MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:coords];
MKMapItem *mapItem = [[MKMapItem alloc] initWithPlacemark:placemark];
[mapItem setName:self.pub.name];
activity.mapItem = mapItem;

// not sure any of these are necessary for my use case
[activity setEligibleForSearch:YES];
[activity setEligibleForHandoff:YES];
[activity setEligibleForPublicIndexing:YES];

[activity becomeCurrent];

运行时,我在控制台中看到以下内容:

[main] sendUserActivityToServer, called on activity C626E4B1-ADF8-49D8-80FB-C773DB71243D after it had been invalidated, so doing nothing.

这表明我的 activity 项目由于某种原因立即失效。我添加了以下内容来设置 expirationDate 但仍然在控制台中收到相同的消息。

activity.expirationDate = [NSDate distantFuture];

据我所知,我已经遵循了此处文档中的所有内容 https://developer.apple.com/reference/foundation/nsuseractivity?language=objc

我还将我的事件类型添加到 NSUserActivityTypes ,尽管我认为这只是启动我的应用程序和接收事件对象所必需的,这不是我现在关心的.

已解决:根据下面@raidfive 的正确答案,activity 现在是一个具有强引用的类属性:

@property (strong) NSUserActivity *activity;
...
[_activity becomeCurrent];

最佳答案

我不确定这是否适用于 mapItem 类型,但文档提到:

Your app must maintain a strong reference to any activity objects that you use for search results.

因此,您可能需要将 activity 存储为类级变量。

关于ios - 指示无效的 NSUserActivity,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41524771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com