/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
iphone/Maps/Core/DeepLink/Strategies/DeepLinkMapStrategy.swift
16 строк
375 B
Alexander Boriskov
[iOS] Native subscription screen deeplink
20 ноя 2019, 18:05
20 ноя 2019, 18:05
4cfc22c
Код
Авторство
О чём код?
class DeepLinkMapStrategy: IDeepLinkHandlerStrategy { var deeplinkURL: DeepLinkURL init(url: DeepLinkURL) { self.deeplinkURL = url } func execute() { if (DeepLinkParser.showMap(for: deeplinkURL.url)) { MapsAppDelegate.theApp().showMap() sendStatisticsOnSuccess(type: kStatMap) } else { sendStatisticsOnFail(type: kStatMap) } } }