当用户点击Today扩展程序时,它将打开该应用程序,他们可以在其中修改其设置。但是当退出应用程序时,用户将返回到主屏幕。我有什么办法可以将焦点恢复到今天的扩展,以便用户可以立即查看更改?还是在iOS中无法做到?
答案 0 :(得分:-1)
我建议您按下按钮以转到该应用。或在应用设置后添加过渡功能。
像这样
var instagramHooks = "instagram://user?username=johndoe"
var instagramUrl = NSURL(string: instagramHooks)
if UIApplication.sharedApplication().canOpenURL(instagramUrl!)
{
UIApplication.sharedApplication().openURL(instagramUrl!)
} else {
//redirect to safari because the user doesn't have Instagram
UIApplication.sharedApplication().openURL(NSURL(string: "http://instagram.com/")!)
}
用户可以单击左上方的按钮以返回是否已从另一个应用程序打开了该应用程序。您可以在他回来时更新数据。