[ios] Minor deprecation warning fix

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-07-04 18:28:07 +02:00 committed by Alexander Borsuk
parent 4a6d6f2ba3
commit 71bc89c94a
17 changed files with 17 additions and 17 deletions

View file

@ -1,7 +1,7 @@
import CarPlay
import Contacts
protocol CarPlayRouterListener: class {
protocol CarPlayRouterListener: AnyObject {
func didCreateRoute(routeInfo: RouteInfo,
trip: CPTrip)
func didUpdateRouteInfo(_ routeInfo: RouteInfo, forTrip trip: CPTrip)

View file

@ -1,3 +1,3 @@
protocol IStyleSheet: class {
protocol IStyleSheet: AnyObject {
static func register(theme: Theme, colors: IColors, fonts: IFonts)
}

View file

@ -1,4 +1,4 @@
protocol BottomMenuInteractorProtocol: class {
protocol BottomMenuInteractorProtocol: AnyObject {
func close()
func addPlace()
func downloadRoutes()

View file

@ -1,4 +1,4 @@
protocol BottomMenuViewProtocol: class {
protocol BottomMenuViewProtocol: AnyObject {
var presenter: BottomMenuPresenterProtocol? { get set }
}

View file

@ -1,4 +1,4 @@
protocol BottomTabBarInteractorProtocol: class {
protocol BottomTabBarInteractorProtocol: AnyObject {
func openSearch()
func openPoint2Point()
func openDiscovery()

View file

@ -1,4 +1,4 @@
protocol BottomTabBarPresenterProtocol: class {
protocol BottomTabBarPresenterProtocol: AnyObject {
func configure()
func onSearchButtonPressed()
func onPoint2PointButtonPressed()

View file

@ -1,4 +1,4 @@
protocol BottomTabBarViewProtocol: class {
protocol BottomTabBarViewProtocol: AnyObject {
var presenter: BottomTabBarPresenterProtocol! { get set }
var isHidden: Bool { get }
var isApplicationBadgeHidden: Bool { get set }

View file

@ -1,4 +1,4 @@
protocol ElevationDetailsPresenterProtocol: class {
protocol ElevationDetailsPresenterProtocol: AnyObject {
func configure()
func onOkButtonPressed()
}

View file

@ -1,4 +1,4 @@
protocol ElevationDetailsRouterProtocol: class {
protocol ElevationDetailsRouterProtocol: AnyObject {
func close()
}

View file

@ -1,4 +1,4 @@
protocol ElevationDetailsViewProtocol: class {
protocol ElevationDetailsViewProtocol: AnyObject {
var presenter: ElevationDetailsPresenterProtocol? { get set }
func setExtendedDifficultyGrade (_ value: String)

View file

@ -1,6 +1,6 @@
import Chart
protocol ElevationProfileViewProtocol: class {
protocol ElevationProfileViewProtocol: AnyObject {
var presenter: ElevationProfilePresenterProtocol? { get set }
var isExtendedDifficultyLabelHidden: Bool { get set }

View file

@ -1,4 +1,4 @@
protocol PlacePageHeaderPresenterProtocol: class {
protocol PlacePageHeaderPresenterProtocol: AnyObject {
func configure()
func onClosePress()
func onExpandPress()

View file

@ -1,4 +1,4 @@
protocol PlacePageHeaderViewProtocol: class {
protocol PlacePageHeaderViewProtocol: AnyObject {
var presenter: PlacePageHeaderPresenterProtocol? { get set }
var isExpandViewHidden: Bool { get set }
var isShadowViewHidden: Bool { get set }

View file

@ -1,4 +1,4 @@
protocol PlacePageInteractorProtocol: class {
protocol PlacePageInteractorProtocol: AnyObject {
func updateTopBound(_ bound: CGFloat, duration: TimeInterval)
}

View file

@ -21,7 +21,7 @@ enum PlacePageState {
}
}
protocol IPlacePageLayout: class {
protocol IPlacePageLayout: AnyObject {
var presenter: PlacePagePresenterProtocol? { get set }
var header: PlacePageHeaderViewController? { get }
var viewControllers: [UIViewController] { get }

View file

@ -1,4 +1,4 @@
protocol PlacePagePresenterProtocol: class {
protocol PlacePagePresenterProtocol: AnyObject {
func updatePreviewOffset()
func layoutIfNeeded()
func showNextStop()

View file

@ -1,5 +1,5 @@
@objc(MWMSearchTabViewControllerDelegate)
protocol SearchTabViewControllerDelegate: class {
protocol SearchTabViewControllerDelegate: AnyObject {
func searchTabController(_ viewContoller: SearchTabViewController, didSearch: String)
}