forked from organicmaps/organicmaps
parent
179a7e0840
commit
1ffb492387
5 changed files with 35 additions and 4 deletions
23
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/Contents.json
vendored
Normal file
23
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/Contents.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial.png
vendored
Normal file
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial@2x.png
vendored
Normal file
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial@2x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial@3x.png
vendored
Normal file
BIN
iphone/Maps/Images.xcassets/img_whatsnew_trial.imageset/img_whatsnew_trial@3x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
|
@ -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)
|
||||
})
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue