[ios] What's new

This commit is contained in:
VladiMihaylenko 2018-04-16 13:38:33 +03:00 committed by Aleksandr Zatsepin
parent b269a99dbc
commit 10582ae4c3
13 changed files with 52 additions and 30 deletions

View file

@ -1,12 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_whats_new_hotel_filter.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View file

@ -1,12 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_whats_new_ugc.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View file

@ -3,14 +3,14 @@ import UIKit
final class WhatsNewController: MWMViewController, WelcomeProtocol {
static var welcomeConfigs: [WelcomeConfig] = [
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_hotel_filter"),
title: "whats_new_title_hotel_filter",
text: "whats_new_message_hotel_filter",
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_reinvented_bookmarks"),
title: "wn_reinvented_bookmarks_title",
text: "wn_reinvented_bookmarks_message",
buttonTitle: "whats_new_next_button",
buttonAction: #selector(nextPage)),
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_ugc"),
title: "whats_new_title_ugc_travel",
text: "whats_new_message_ugc_travel",
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_way_of_booking"),
title: "wn_way_of_booking_title",
text: "wn_way_of_booking_message",
buttonTitle: "done",
buttonAction: #selector(close)),
]