forked from organicmaps/organicmaps
[ios] Minor deprecation warning fix
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
4a6d6f2ba3
commit
71bc89c94a
17 changed files with 17 additions and 17 deletions
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
protocol IStyleSheet: class {
|
||||
protocol IStyleSheet: AnyObject {
|
||||
static func register(theme: Theme, colors: IColors, fonts: IFonts)
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol BottomMenuInteractorProtocol: class {
|
||||
protocol BottomMenuInteractorProtocol: AnyObject {
|
||||
func close()
|
||||
func addPlace()
|
||||
func downloadRoutes()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol BottomMenuViewProtocol: class {
|
||||
protocol BottomMenuViewProtocol: AnyObject {
|
||||
var presenter: BottomMenuPresenterProtocol? { get set }
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol BottomTabBarInteractorProtocol: class {
|
||||
protocol BottomTabBarInteractorProtocol: AnyObject {
|
||||
func openSearch()
|
||||
func openPoint2Point()
|
||||
func openDiscovery()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol BottomTabBarPresenterProtocol: class {
|
||||
protocol BottomTabBarPresenterProtocol: AnyObject {
|
||||
func configure()
|
||||
func onSearchButtonPressed()
|
||||
func onPoint2PointButtonPressed()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol BottomTabBarViewProtocol: class {
|
||||
protocol BottomTabBarViewProtocol: AnyObject {
|
||||
var presenter: BottomTabBarPresenterProtocol! { get set }
|
||||
var isHidden: Bool { get }
|
||||
var isApplicationBadgeHidden: Bool { get set }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol ElevationDetailsPresenterProtocol: class {
|
||||
protocol ElevationDetailsPresenterProtocol: AnyObject {
|
||||
func configure()
|
||||
func onOkButtonPressed()
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol ElevationDetailsRouterProtocol: class {
|
||||
protocol ElevationDetailsRouterProtocol: AnyObject {
|
||||
func close()
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol ElevationDetailsViewProtocol: class {
|
||||
protocol ElevationDetailsViewProtocol: AnyObject {
|
||||
var presenter: ElevationDetailsPresenterProtocol? { get set }
|
||||
|
||||
func setExtendedDifficultyGrade (_ value: String)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import Chart
|
||||
|
||||
protocol ElevationProfileViewProtocol: class {
|
||||
protocol ElevationProfileViewProtocol: AnyObject {
|
||||
var presenter: ElevationProfilePresenterProtocol? { get set }
|
||||
|
||||
var isExtendedDifficultyLabelHidden: Bool { get set }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol PlacePageHeaderPresenterProtocol: class {
|
||||
protocol PlacePageHeaderPresenterProtocol: AnyObject {
|
||||
func configure()
|
||||
func onClosePress()
|
||||
func onExpandPress()
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol PlacePageInteractorProtocol: class {
|
||||
protocol PlacePageInteractorProtocol: AnyObject {
|
||||
func updateTopBound(_ bound: CGFloat, duration: TimeInterval)
|
||||
}
|
||||
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
protocol PlacePagePresenterProtocol: class {
|
||||
protocol PlacePagePresenterProtocol: AnyObject {
|
||||
func updatePreviewOffset()
|
||||
func layoutIfNeeded()
|
||||
func showNextStop()
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
@objc(MWMSearchTabViewControllerDelegate)
|
||||
protocol SearchTabViewControllerDelegate: class {
|
||||
protocol SearchTabViewControllerDelegate: AnyObject {
|
||||
func searchTabController(_ viewContoller: SearchTabViewController, didSearch: String)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue