[MAPSME-5273] [ios] Updated What’s new.
|
@ -2,17 +2,17 @@
|
|||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_viator.png",
|
||||
"filename" : "img_whats_new_route.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_viator@2x.png",
|
||||
"filename" : "img_whats_new_route@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_viator@3x.png",
|
||||
"filename" : "img_whats_new_route@3x.png",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_route.imageset/img_whats_new_route.png
vendored
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_route.imageset/img_whats_new_route@2x.png
vendored
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_route.imageset/img_whats_new_route@3x.png
vendored
Normal file
After Width: | Height: | Size: 119 KiB |
|
@ -2,17 +2,17 @@
|
|||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_intermediate_point.png",
|
||||
"filename" : "img_whats_new_update.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_intermediate_point@2x.png",
|
||||
"filename" : "img_whats_new_update@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_wn_intermediate_point@3x.png",
|
||||
"filename" : "img_whats_new_update@3x.png",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_update.imageset/img_whats_new_update.png
vendored
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_update.imageset/img_whats_new_update@2x.png
vendored
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_whats_new_update.imageset/img_whats_new_update@3x.png
vendored
Normal file
After Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 114 KiB |
|
@ -3,14 +3,14 @@ import UIKit
|
|||
final class WhatsNewController: MWMViewController, WelcomeProtocol {
|
||||
|
||||
static var welcomeConfigs: [WelcomeConfig] = [
|
||||
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_intermediate_point"),
|
||||
title: "whatsnew_intermediate_point_title",
|
||||
text: "whatsnew_intermediate_point_message",
|
||||
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_route"),
|
||||
title: "whats_new_title_route",
|
||||
text: "whats_new_message_route",
|
||||
buttonTitle: "whats_new_next_button",
|
||||
buttonAction: #selector(nextPage)),
|
||||
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_viator"),
|
||||
title: "whatsnew_viator_title",
|
||||
text: "whatsnew_viator_message",
|
||||
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_update"),
|
||||
title: "whats_new_message_title_update",
|
||||
text: "whats_new_message_maps_update",
|
||||
buttonTitle: "done",
|
||||
buttonAction: #selector(close))
|
||||
]
|
||||
|
|