[iOS] What's new 10.2 Major

https://jira.mail.ru/browse/MAPSME-14252
This commit is contained in:
Alexander Boriskov 2020-07-29 10:31:00 +03:00 committed by Arsentiy Milchakov
parent 179a7e0840
commit 1ffb492387
5 changed files with 35 additions and 4 deletions

View file

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_whatsnew_trial.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "img_whatsnew_trial@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "img_whatsnew_trial@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View file

@ -1,10 +1,18 @@
class WhatsNewBuilder {
static var configs:[WhatsNewPresenter.WhatsNewConfig] {
return [
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_wnew_newguides"),
title: "whatsnew_guides_on_map_title",
text: "whatsnew_guides_on_map_message",
buttonNextTitle: "done")
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_whatsnew_trial.png"),
title: "whatsnew_trial_title",
text: "whatsnew_trial_message",
buttonNextTitle: "whatsnew_trial_cta",
action: {
let subscribeViewController = SubscriptionViewBuilder.build(type: .allPass,
parentViewController: MapViewController.shared(),
source: kStatOnboardingGuidesSubscription,
successDialog: .goToCatalog,
completion: nil)
MapViewController.shared().present(subscribeViewController, animated: true)
})
]
}