[MAPSME-5273] [ios] Updated What’s new.

This commit is contained in:
Ilya Grechuhin 2017-08-14 11:25:32 +03:00 committed by burivuh
parent d91e5fda78
commit a1ede167f7
15 changed files with 12 additions and 12 deletions

View file

@ -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"
}
],

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View file

@ -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"
}
],

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

View file

@ -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))
]