forked from organicmaps/organicmaps-tmp
[iOS] Fixed 'style system' code style, swizzle and renderers
This commit is contained in:
parent
91d7242682
commit
90dba18407
77 changed files with 348 additions and 258 deletions
|
@ -1,5 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
class CatalogConnectionErrorView: UIView {
|
||||
|
||||
@IBOutlet var imageView: UIImageView!
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
class AllPassSubscriptionViewController: BaseSubscriptionViewController {
|
||||
//MARK:outlets
|
||||
@IBOutlet private var backgroundImageView: ImageViewCrossDisolve!
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
class BookmarksSubscriptionButton: UIButton {
|
||||
private let descriptionLabel = UILabel()
|
||||
private let priceLabel = UILabel()
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
extension String {
|
||||
func size(width: CGFloat, font: UIFont, maxNumberOfLines: Int = 0) -> CGSize {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface UIButton (RuntimeAttributes_dep)
|
||||
@interface UIButton (RuntimeAttributes)
|
||||
|
||||
@property(copy, nonatomic) NSString * localizedText;
|
||||
|
||||
|
|
|
@ -153,7 +153,7 @@ static UIColor * color(SEL cmd) {
|
|||
// Green color
|
||||
+ (UIColor *)primary
|
||||
{
|
||||
return [StyleManager instance].theme.colors.primary;
|
||||
return StyleManager.shared.theme.colors.primary;
|
||||
}
|
||||
|
||||
// Use for opaque fullscreen
|
||||
|
@ -165,56 +165,56 @@ static UIColor * color(SEL cmd) {
|
|||
// Background color && press color
|
||||
+ (UIColor *)pressBackground
|
||||
{
|
||||
return [StyleManager instance].theme.colors.pressBackground;
|
||||
return StyleManager.shared.theme.colors.pressBackground;
|
||||
}
|
||||
// Red color (use for status closed in place page)
|
||||
+ (UIColor *)red
|
||||
{
|
||||
return [StyleManager instance].theme.colors.red;
|
||||
return StyleManager.shared.theme.colors.red;
|
||||
}
|
||||
|
||||
// Blue color (use for links and phone numbers)
|
||||
+ (UIColor *)linkBlue
|
||||
{
|
||||
return [StyleManager instance].theme.colors.linkBlue;
|
||||
return StyleManager.shared.theme.colors.linkBlue;
|
||||
}
|
||||
|
||||
+ (UIColor *)linkBlueHighlighted
|
||||
{
|
||||
return [StyleManager instance].theme.colors.linkBlueHighlighted;
|
||||
return StyleManager.shared.theme.colors.linkBlueHighlighted;
|
||||
}
|
||||
|
||||
+ (UIColor *)linkBlueDark
|
||||
{
|
||||
return [StyleManager instance].theme.colors.linkBlueDark;
|
||||
return StyleManager.shared.theme.colors.linkBlueDark;
|
||||
}
|
||||
+ (UIColor *)buttonRed
|
||||
{
|
||||
return [StyleManager instance].theme.colors.buttonRed;
|
||||
return StyleManager.shared.theme.colors.buttonRed;
|
||||
}
|
||||
+ (UIColor *)blackPrimaryText
|
||||
{
|
||||
return [StyleManager instance].theme.colors.blackPrimaryText;
|
||||
return StyleManager.shared.theme.colors.blackPrimaryText;
|
||||
}
|
||||
|
||||
+ (UIColor *)blackSecondaryText
|
||||
{
|
||||
return [StyleManager instance].theme.colors.blackSecondaryText;
|
||||
return StyleManager.shared.theme.colors.blackSecondaryText;
|
||||
}
|
||||
|
||||
+ (UIColor *)blackHintText
|
||||
{
|
||||
return [StyleManager instance].theme.colors.blackHintText;
|
||||
return StyleManager.shared.theme.colors.blackHintText;
|
||||
}
|
||||
|
||||
+ (UIColor *)blackDividers
|
||||
{
|
||||
return [StyleManager instance].theme.colors.blackDividers;
|
||||
return StyleManager.shared.theme.colors.blackDividers;
|
||||
}
|
||||
|
||||
+ (UIColor *)white
|
||||
{
|
||||
return [StyleManager instance].theme.colors.white;
|
||||
return StyleManager.shared.theme.colors.white;
|
||||
}
|
||||
|
||||
+ (UIColor *)whitePrimaryText
|
||||
|
@ -230,12 +230,12 @@ static UIColor * color(SEL cmd) {
|
|||
|
||||
+ (UIColor *)whiteHintText
|
||||
{
|
||||
return [StyleManager instance].theme.colors.whiteHintText;
|
||||
return StyleManager.shared.theme.colors.whiteHintText;
|
||||
}
|
||||
|
||||
+ (UIColor *)buttonDisabledBlueText
|
||||
{
|
||||
return [StyleManager instance].theme.colors.buttonDisabledBlueText;
|
||||
return StyleManager.shared.theme.colors.buttonDisabledBlueText;
|
||||
}
|
||||
|
||||
+ (UIColor *)buttonHighlightedBlueText
|
||||
|
@ -245,7 +245,7 @@ static UIColor * color(SEL cmd) {
|
|||
|
||||
+ (UIColor *)blackOpaque
|
||||
{
|
||||
return [StyleManager instance].theme.colors.blackOpaque;
|
||||
return StyleManager.shared.theme.colors.blackOpaque;
|
||||
}
|
||||
|
||||
+ (UIColor *)bookingBackground
|
||||
|
@ -265,7 +265,7 @@ static UIColor * color(SEL cmd) {
|
|||
|
||||
+ (UIColor *)bannerBackground
|
||||
{
|
||||
return [StyleManager instance].theme.colors.bannerBackground;
|
||||
return StyleManager.shared.theme.colors.bannerBackground;
|
||||
}
|
||||
|
||||
+ (UIColor *)colorWithName:(NSString *)colorName
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
extension UIView {
|
||||
@objc func animateConstraints(duration: TimeInterval,
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
extension UIView {
|
||||
func center(inContainerView containerView: UIView) -> CGPoint {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
extension UIView {
|
||||
@objc var snapshot: UIView {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
struct ExpandableReviewSettings {
|
||||
var expandText: String
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
final class ExpandableReviewView: UIView {
|
||||
var contentLabel: UILabel = {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="retina4_7" orientation="portrait" appearance="light"/>
|
||||
<dependencies>
|
||||
<deployment identifier="iOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
|
||||
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
||||
<state key="normal" title="Готово"/>
|
||||
<userDefinedRuntimeAttributes>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationButton"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationBarItem"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="done"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
<connections>
|
||||
|
@ -49,7 +49,7 @@
|
|||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<nil key="highlightedColor"/>
|
||||
<userDefinedRuntimeAttributes>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationButton"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationBarItem"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="editor_add_select_location"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
</label>
|
||||
|
@ -61,7 +61,7 @@
|
|||
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
||||
<state key="normal" title="Отмена"/>
|
||||
<userDefinedRuntimeAttributes>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationButton"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="styleName" value="NavigationBarItem"/>
|
||||
<userDefinedRuntimeAttribute type="string" keyPath="localizedText" value="cancel"/>
|
||||
</userDefinedRuntimeAttributes>
|
||||
<connections>
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
final class RatingSummaryView: UIView {
|
||||
@IBInspectable var value: String = RatingSummaryViewSettings.Default.value {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
struct RatingSummaryViewSettings {
|
||||
enum Default {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@IBDesignable final class RatingView: UIView {
|
||||
@IBInspectable var value: CGFloat = RatingViewSettings.Default.value {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
struct RatingViewSettings {
|
||||
enum FillMode: Int {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@objc class PromoButton: MWMButton {
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@objc class PromoCoordinator: NSObject {
|
||||
@objc enum PromoType: Int{
|
||||
|
|
|
@ -57,7 +57,7 @@ NSArray<UIImage *> * imagesWithName(NSString * name)
|
|||
[ovc addChildViewController:self];
|
||||
[ovc.controlsView addSubview:self.view];
|
||||
[self configLayout];
|
||||
[[StyleManager instance] addListener: self];
|
||||
[StyleManager.shared addListener: self];
|
||||
[MWMMapOverlayManager addObserver:self];
|
||||
}
|
||||
return self;
|
||||
|
@ -65,7 +65,7 @@ NSArray<UIImage *> * imagesWithName(NSString * name)
|
|||
|
||||
- (void)dealloc
|
||||
{
|
||||
[[StyleManager instance] removeListener: self];
|
||||
[StyleManager.shared removeListener: self];
|
||||
}
|
||||
|
||||
- (void)configLayout
|
||||
|
@ -190,6 +190,6 @@ NSArray<UIImage *> * imagesWithName(NSString * name)
|
|||
|
||||
- (void)onTrafficStateUpdated { [self applyTheme]; }
|
||||
- (void)onTransitStateUpdated { [self applyTheme]; }
|
||||
- (void)onIsoLinesStateUpdated { [self refreshAppearance]; }
|
||||
- (void)onIsoLinesStateUpdated { [self applyTheme]; }
|
||||
|
||||
@end
|
||||
|
|
|
@ -559,14 +559,6 @@ continueUserActivity:(NSUserActivity *)userActivity
|
|||
});
|
||||
}
|
||||
|
||||
+ (NSDictionary *)navigationBarTextAttributes
|
||||
{
|
||||
return @{
|
||||
NSForegroundColorAttributeName : [UIColor whitePrimaryText],
|
||||
NSFontAttributeName : [UIFont regular18]
|
||||
};
|
||||
}
|
||||
|
||||
+ (void)customizeAppearanceForNavigationBar:(UINavigationBar *)navigationBar
|
||||
{
|
||||
auto backImage = [[UIImage imageNamed:@"ic_nav_bar_back_sys"]
|
||||
|
@ -580,15 +572,6 @@ continueUserActivity:(NSUserActivity *)userActivity
|
|||
[UIButton appearance].exclusiveTouch = YES;
|
||||
|
||||
[self customizeAppearanceForNavigationBar:[UINavigationBar appearance]];
|
||||
|
||||
UIBarButtonItem *barButtonApperance = [UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UINavigationBar class]]];
|
||||
[barButtonApperance setTitleTextAttributes:[self navigationBarTextAttributes]
|
||||
forState:UIControlStateNormal];
|
||||
[barButtonApperance setTitleTextAttributes:@{
|
||||
NSForegroundColorAttributeName : [UIColor lightGrayColor],
|
||||
}
|
||||
forState:UIControlStateDisabled];
|
||||
[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UINavigationBar class]]].tintColor = [UIColor whitePrimaryText];
|
||||
|
||||
UITextField * textField = [UITextField appearance];
|
||||
textField.keyboardAppearance =
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
class ImageViewCrossDisolve: UIView {
|
||||
private var imageViews: [UIImageView] = []
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
fileprivate let kDotWidth: CGFloat = 6.0
|
||||
fileprivate let kExtraDotWidth: CGFloat = kDotWidth * 4
|
||||
|
|
|
@ -38,3 +38,7 @@ func LOG(_ level: LogLevel,
|
|||
Logger.log(level, message: formattedMessage)
|
||||
}
|
||||
}
|
||||
|
||||
struct Weak<T> where T: AnyObject {
|
||||
weak var value: T?
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@ extension BannerType: Equatable {
|
|||
}
|
||||
|
||||
extension BannerType: Hashable {
|
||||
func hash(into hasher: inout Hasher){
|
||||
func hash(into hasher: inout Hasher) {
|
||||
switch self {
|
||||
case .none: hasher.combine(mwmType.hashValue)
|
||||
case let .facebook(id): hasher.combine(mwmType.hashValue ^ id.hashValue)
|
||||
|
|
|
@ -463,7 +463,9 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType)
|
|||
{
|
||||
rm.FollowRoute();
|
||||
[[MWMMapViewControlsManager manager] onRouteStart];
|
||||
[MWMThemeManager setAutoUpdates:YES];
|
||||
if (@available(iOS 13.0, *)) {} else {
|
||||
[MWMThemeManager setAutoUpdates:YES];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -522,7 +524,9 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType)
|
|||
GetFramework().GetRoutingManager().CloseRouting(removeRoutePoints);
|
||||
if (removeRoutePoints)
|
||||
GetFramework().GetRoutingManager().DeleteSavedRoutePoints();
|
||||
[MWMThemeManager setAutoUpdates:NO];
|
||||
if (@available(iOS 13.0, *)) {} else {
|
||||
[MWMThemeManager setAutoUpdates:NO];
|
||||
}
|
||||
[[MapsAppDelegate theApp] showAlertIfRequired];
|
||||
}
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ class SubscriptionManager: NSObject, ISubscriptionManager {
|
|||
return SKPaymentQueue.canMakePayments()
|
||||
}
|
||||
|
||||
@objc func getAvailableSubscriptions(_ completion: @escaping SuscriptionsCompletion){
|
||||
@objc func getAvailableSubscriptions(_ completion: @escaping SuscriptionsCompletion) {
|
||||
subscriptionsComplection = completion
|
||||
productsRequest = SKProductsRequest(productIdentifiers: Set(productIds))
|
||||
productsRequest!.delegate = self
|
||||
|
|
|
@ -58,223 +58,222 @@ class Style: ExpressibleByDictionaryLiteral {
|
|||
}
|
||||
|
||||
subscript(keyname: Key) -> Value {
|
||||
get { return self.params[keyname] != nil ? self.params[keyname]! : nil }
|
||||
get { return params[keyname] ?? nil }
|
||||
}
|
||||
|
||||
func append(_ style: Style){
|
||||
self.params.merge(style.params) { (a, b) -> Style.Value in
|
||||
func append(_ style: Style) {
|
||||
params.merge(style.params) { (a, b) -> Style.Value in
|
||||
return b
|
||||
}
|
||||
}
|
||||
|
||||
func append(_ styles: [Style]){
|
||||
func append(_ styles: [Style]) {
|
||||
styles.forEach { (style) in
|
||||
self.params.merge(style.params) { (a, b) -> Style.Value in
|
||||
params.merge(style.params) { (a, b) -> Style.Value in
|
||||
return b
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
extension Style {
|
||||
var backgroundColor: UIColor? {
|
||||
get { return self[.backgroundColor] as? UIColor }
|
||||
set { self.params[.backgroundColor] = newValue }
|
||||
set { params[.backgroundColor] = newValue }
|
||||
}
|
||||
|
||||
var borderColor: UIColor? {
|
||||
get { return self[.borderColor] as? UIColor }
|
||||
set { self.params[.borderColor] = newValue }
|
||||
set { params[.borderColor] = newValue }
|
||||
}
|
||||
|
||||
var borderWidth: CGFloat? {
|
||||
get { return self[.borderWidth] as? CGFloat }
|
||||
set { self.params[.borderWidth] = newValue }
|
||||
set { params[.borderWidth] = newValue }
|
||||
}
|
||||
|
||||
var cornerRadius: CGFloat? {
|
||||
get { return self[.cornerRadius] as? CGFloat }
|
||||
set { self.params[.cornerRadius] = newValue }
|
||||
set { params[.cornerRadius] = newValue }
|
||||
}
|
||||
|
||||
var shadowColor: UIColor? {
|
||||
get { return self[.shadowColor] as? UIColor }
|
||||
set { self.params[.shadowColor] = newValue }
|
||||
set { params[.shadowColor] = newValue }
|
||||
}
|
||||
|
||||
var shadowOpacity: Float? {
|
||||
get { return self[.shadowOpacity] as? Float }
|
||||
set { self.params[.shadowOpacity] = newValue }
|
||||
set { params[.shadowOpacity] = newValue }
|
||||
}
|
||||
|
||||
var shadowOffset: CGSize? {
|
||||
get { return self[.shadowOffset] as? CGSize }
|
||||
set { self.params[.shadowOffset] = newValue }
|
||||
set { params[.shadowOffset] = newValue }
|
||||
}
|
||||
|
||||
var shadowRadius: CGFloat? {
|
||||
get { return self[.shadowRadius] as? CGFloat }
|
||||
set { self.params[.shadowRadius] = newValue }
|
||||
set { params[.shadowRadius] = newValue }
|
||||
}
|
||||
|
||||
var clip: Bool? {
|
||||
get { return self[.clip] as? Bool }
|
||||
set { self.params[.clip] = newValue }
|
||||
set { params[.clip] = newValue }
|
||||
}
|
||||
|
||||
var round: Bool? {
|
||||
get { return self[.round] as? Bool }
|
||||
set { self.params[.round] = newValue }
|
||||
set { params[.round] = newValue }
|
||||
}
|
||||
|
||||
var font: UIFont? {
|
||||
get { return self[.font] as? UIFont }
|
||||
set { self.params[.font] = newValue }
|
||||
set { params[.font] = newValue }
|
||||
}
|
||||
|
||||
var fontColor: UIColor? {
|
||||
get { return self[.fontColor] as? UIColor }
|
||||
set { self.params[.fontColor] = newValue }
|
||||
set { params[.fontColor] = newValue }
|
||||
}
|
||||
|
||||
var fontDetailed: UIFont? {
|
||||
get { return self[.fontDetailed] as? UIFont }
|
||||
set { self.params[.fontDetailed] = newValue }
|
||||
set { params[.fontDetailed] = newValue }
|
||||
}
|
||||
|
||||
var fontColorDetailed: UIColor? {
|
||||
get { return self[.fontColorDetailed] as? UIColor }
|
||||
set { self.params[.fontColorDetailed] = newValue }
|
||||
set { params[.fontColorDetailed] = newValue }
|
||||
}
|
||||
|
||||
var tintColor: UIColor? {
|
||||
get { return self[.tintColor] as? UIColor }
|
||||
set { self.params[.tintColor] = newValue }
|
||||
set { params[.tintColor] = newValue }
|
||||
}
|
||||
|
||||
var tintColorDisabled: UIColor? {
|
||||
get { return self[.tintColorDisabled] as? UIColor }
|
||||
set { self.params[.tintColorDisabled] = newValue }
|
||||
set { params[.tintColorDisabled] = newValue }
|
||||
}
|
||||
|
||||
var onTintColor: UIColor? {
|
||||
get { return self[.onTintColor] as? UIColor }
|
||||
set { self.params[.onTintColor] = newValue }
|
||||
set { params[.onTintColor] = newValue }
|
||||
}
|
||||
|
||||
var offTintColor: UIColor? {
|
||||
get { return self[.offTintColor] as? UIColor }
|
||||
set { self.params[.offTintColor] = newValue }
|
||||
set { params[.offTintColor] = newValue }
|
||||
}
|
||||
|
||||
var image: String? {
|
||||
get { return self[.image] as? String }
|
||||
set { self.params[.image] = newValue }
|
||||
set { params[.image] = newValue }
|
||||
}
|
||||
|
||||
var mwmImage: String? {
|
||||
get { return self[.mwmImage] as? String }
|
||||
set { self.params[.mwmImage] = newValue }
|
||||
set { params[.mwmImage] = newValue }
|
||||
}
|
||||
|
||||
var color: UIColor? {
|
||||
get { return self[.color] as? UIColor }
|
||||
set { self.params[.color] = newValue }
|
||||
set { params[.color] = newValue }
|
||||
}
|
||||
|
||||
var attributes: [NSAttributedString.Key : Any]? {
|
||||
get { return self[.attributes] as? [NSAttributedString.Key : Any] }
|
||||
set { self.params[.attributes] = newValue }
|
||||
set { params[.attributes] = newValue }
|
||||
}
|
||||
|
||||
var linkAttributes: [NSAttributedString.Key : Any]? {
|
||||
get { return self[.linkAttributes] as? [NSAttributedString.Key : Any] }
|
||||
set { self.params[.linkAttributes] = newValue }
|
||||
set { params[.linkAttributes] = newValue }
|
||||
}
|
||||
|
||||
var backgroundImage: UIImage? {
|
||||
get { return self[.backgroundImage] as? UIImage }
|
||||
set { self.params[.backgroundImage] = newValue }
|
||||
set { params[.backgroundImage] = newValue }
|
||||
}
|
||||
|
||||
var barTintColor: UIColor? {
|
||||
get { return self[.barTintColor] as? UIColor }
|
||||
set { self.params[.barTintColor] = newValue }
|
||||
set { params[.barTintColor] = newValue }
|
||||
}
|
||||
|
||||
var backgroundColorSelected: UIColor? {
|
||||
get { return self[.backgroundColorSelected] as? UIColor }
|
||||
set { self.params[.backgroundColorSelected] = newValue }
|
||||
set { params[.backgroundColorSelected] = newValue }
|
||||
}
|
||||
|
||||
var backgroundColorHighlighted: UIColor? {
|
||||
get { return self[.backgroundColorHighlighted] as? UIColor }
|
||||
set { self.params[.backgroundColorHighlighted] = newValue }
|
||||
set { params[.backgroundColorHighlighted] = newValue }
|
||||
}
|
||||
|
||||
var backgroundColorDisabled: UIColor? {
|
||||
get { return self[.backgroundColorDisabled] as? UIColor }
|
||||
set { self.params[.backgroundColorDisabled] = newValue }
|
||||
set { params[.backgroundColorDisabled] = newValue }
|
||||
}
|
||||
|
||||
var fontColorSelected: UIColor? {
|
||||
get { return self[.fontColorSelected] as? UIColor }
|
||||
set { self.params[.fontColorSelected] = newValue }
|
||||
set { params[.fontColorSelected] = newValue }
|
||||
}
|
||||
|
||||
var fontColorHighlighted: UIColor? {
|
||||
get { return self[.fontColorHighlighted] as? UIColor }
|
||||
set { self.params[.fontColorHighlighted] = newValue }
|
||||
set { params[.fontColorHighlighted] = newValue }
|
||||
}
|
||||
|
||||
var fontColorDisabled: UIColor? {
|
||||
get { return self[.fontColorDisabled] as? UIColor }
|
||||
set { self.params[.fontColorDisabled] = newValue }
|
||||
set { params[.fontColorDisabled] = newValue }
|
||||
}
|
||||
|
||||
var shadowImage: UIImage? {
|
||||
get { return self[.shadowImage] as? UIImage }
|
||||
set { self.params[.shadowImage] = newValue }
|
||||
set { params[.shadowImage] = newValue }
|
||||
}
|
||||
|
||||
var textAlignment: NSTextAlignment? {
|
||||
get { return self[.textAlignment] as? NSTextAlignment }
|
||||
set { self.params[.textAlignment] = newValue }
|
||||
set { params[.textAlignment] = newValue }
|
||||
}
|
||||
|
||||
var textContainerInset: UIEdgeInsets? {
|
||||
get { return self[.textContainerInset] as? UIEdgeInsets }
|
||||
set { self.params[.textContainerInset] = newValue }
|
||||
set { params[.textContainerInset] = newValue }
|
||||
}
|
||||
|
||||
var separatorColor: UIColor? {
|
||||
get { return self[.separatorColor] as? UIColor }
|
||||
set { self.params[.separatorColor] = newValue }
|
||||
set { params[.separatorColor] = newValue }
|
||||
}
|
||||
|
||||
var pageIndicatorTintColor: UIColor? {
|
||||
get { return self[.pageIndicatorTintColor] as? UIColor }
|
||||
set { self.params[.pageIndicatorTintColor] = newValue }
|
||||
set { params[.pageIndicatorTintColor] = newValue }
|
||||
}
|
||||
|
||||
var currentPageIndicatorTintColor: UIColor? {
|
||||
get { return self[.currentPageIndicatorTintColor] as? UIColor }
|
||||
set { self.params[.currentPageIndicatorTintColor] = newValue }
|
||||
set { params[.currentPageIndicatorTintColor] = newValue }
|
||||
}
|
||||
|
||||
var colors: [UIColor]? {
|
||||
get { return self[.colors] as? [UIColor] }
|
||||
set { self.params[.colors] = newValue }
|
||||
set { params[.colors] = newValue }
|
||||
}
|
||||
|
||||
var images: [String]? {
|
||||
get { return self[.images] as? [String] }
|
||||
set { self.params[.images] = newValue }
|
||||
set { params[.images] = newValue }
|
||||
}
|
||||
|
||||
var coloring: MWMButtonColoring? {
|
||||
get { return self[.coloring] as? MWMButtonColoring }
|
||||
set { self.params[.coloring] = newValue }
|
||||
set { params[.coloring] = newValue }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,12 +3,9 @@
|
|||
}
|
||||
|
||||
@objc class StyleManager: NSObject {
|
||||
private struct Weak {
|
||||
weak var listener: ThemeListener?
|
||||
}
|
||||
private static var _instance: StyleManager?
|
||||
@objc static var shared = StyleManager()
|
||||
@objc private(set) var theme: Theme?
|
||||
private var listeners: [Weak] = []
|
||||
private var listeners: [Weak<ThemeListener>] = []
|
||||
|
||||
func setTheme (_ theme: Theme) {
|
||||
self.theme = theme;
|
||||
|
@ -19,15 +16,7 @@
|
|||
return theme != nil
|
||||
}
|
||||
|
||||
@objc class func instance() -> StyleManager{
|
||||
if StyleManager._instance == nil {
|
||||
SwizzleStyle.addSwizzle();
|
||||
StyleManager._instance = StyleManager()
|
||||
}
|
||||
return StyleManager._instance!
|
||||
}
|
||||
|
||||
func update (){
|
||||
func update () {
|
||||
for window in UIApplication.shared.windows {
|
||||
updateView(window.rootViewController?.view)
|
||||
}
|
||||
|
@ -43,7 +32,7 @@
|
|||
}
|
||||
|
||||
for container in listeners {
|
||||
if let listener = container.listener {
|
||||
if let listener = container.value {
|
||||
listener.applyTheme()
|
||||
}
|
||||
}
|
||||
|
@ -69,16 +58,14 @@
|
|||
if theme != nil {
|
||||
themeListener.applyTheme()
|
||||
}
|
||||
if listeners.contains(where: { (container) -> Bool in
|
||||
return themeListener === container.listener
|
||||
}) == false {
|
||||
listeners.append(Weak(listener: themeListener))
|
||||
if !listeners.contains(where: { themeListener === $0.value }) {
|
||||
listeners.append(Weak(value: themeListener))
|
||||
}
|
||||
}
|
||||
|
||||
@objc func removeListener(_ themeListener: ThemeListener) {
|
||||
listeners.removeAll { (container) -> Bool in
|
||||
return container.listener === themeListener
|
||||
return container.value === themeListener
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,32 +25,23 @@
|
|||
U.register(theme: self, colors: colors, fonts: fonts)
|
||||
}
|
||||
|
||||
|
||||
func add(styleName: StyleName,
|
||||
_ resolver:@escaping Resolver) {
|
||||
func add(styleName: StyleName, _ resolver:@escaping Resolver) {
|
||||
resolvers[styleName] = resolver
|
||||
}
|
||||
|
||||
func add(styleName: StyleName,
|
||||
from: StyleName,
|
||||
_ resolver:@escaping Resolver) {
|
||||
func add(styleName: StyleName, from: StyleName, _ resolver:@escaping Resolver) {
|
||||
resolvers[styleName] = resolver
|
||||
dependencies[styleName] = from
|
||||
}
|
||||
|
||||
func add(styleName: StyleName,
|
||||
forType: ThemeType,
|
||||
_ resolver:@escaping Resolver) {
|
||||
func add(styleName: StyleName, forType: ThemeType, _ resolver:@escaping Resolver) {
|
||||
guard themeType == forType else {
|
||||
return
|
||||
}
|
||||
resolvers[styleName] = resolver
|
||||
}
|
||||
|
||||
func add(styleName: StyleName,
|
||||
from: StyleName,
|
||||
forType: ThemeType,
|
||||
_ resolver:@escaping Resolver) {
|
||||
func add(styleName: StyleName, from: StyleName, forType: ThemeType, _ resolver:@escaping Resolver) {
|
||||
guard themeType == forType else {
|
||||
return
|
||||
}
|
||||
|
|
|
@ -50,12 +50,12 @@ final class ThemeManager: NSObject {
|
|||
|
||||
|
||||
FrameworkHelper.setTheme(actualTheme)
|
||||
if nightMode != newNightMode || StyleManager.instance().hasTheme() == false{
|
||||
if nightMode != newNightMode || StyleManager.shared.hasTheme() == false{
|
||||
UIColor.setNightMode(newNightMode)
|
||||
if newNightMode {
|
||||
StyleManager.instance().setTheme(MainTheme(type: .dark, colors: NightColors(), fonts: Fonts()))
|
||||
StyleManager.shared.setTheme(MainTheme(type: .dark, colors: NightColors(), fonts: Fonts()))
|
||||
} else {
|
||||
StyleManager.instance().setTheme(MainTheme(type: .light, colors: DayColors(), fonts: Fonts()))
|
||||
StyleManager.shared.setTheme(MainTheme(type: .light, colors: DayColors(), fonts: Fonts()))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -64,6 +64,7 @@ final class ThemeManager: NSObject {
|
|||
instance.update(theme: MWMSettings.theme())
|
||||
}
|
||||
|
||||
@available(iOS, deprecated:13.0)
|
||||
@objc static var autoUpdates: Bool {
|
||||
get {
|
||||
return instance.timer != nil
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
#import "SwizzleStyle.h"
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "objc/runtime.h"
|
||||
#import "objc/message.h"
|
||||
|
||||
@implementation SwizzleStyle
|
||||
+ (void)addSwizzle {
|
||||
[SwizzleStyle swizzle:[UIView class] methodName:@"didMoveToWindow"];
|
||||
|
||||
[self swizzle:[UITextField class] methodName:@"textRectForBounds:"];
|
||||
[self swizzle:[UITextField class] methodName:@"editingRectForBounds:"];
|
||||
|
||||
[SwizzleStyle swizzle:[UIWindow class] methodName:@"becomeKeyWindow"];
|
||||
}
|
||||
|
||||
+ (void)swizzle:(Class)class methodName:(NSString*)methodName
|
||||
{
|
||||
SEL originalMethod = NSSelectorFromString(methodName);
|
||||
SEL newMethod = NSSelectorFromString([NSString stringWithFormat:@"%@%@", @"sw_", methodName]);
|
||||
[SwizzleStyle swizzle:class from:originalMethod to:newMethod];
|
||||
}
|
||||
|
||||
+ (void)swizzle:(Class)class from:(SEL)original to:(SEL)new
|
||||
{
|
||||
Method originalMethod = class_getInstanceMethod(class, original);
|
||||
Method newMethod = class_getInstanceMethod(class, new);
|
||||
if (class_addMethod(class, original, method_getImplementation(newMethod), method_getTypeEncoding(newMethod))) {
|
||||
class_replaceMethod(class, new, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));
|
||||
} else {
|
||||
method_exchangeImplementations(originalMethod, newMethod);
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
|
@ -0,0 +1,42 @@
|
|||
fileprivate struct AssociatedKeys {
|
||||
static var styleName: UInt8 = 0
|
||||
static var isStyleApplied: UInt8 = 1
|
||||
}
|
||||
|
||||
@objc extension UINavigationItem {
|
||||
@objc func sw_didMoveToWindow() {
|
||||
applyTheme()
|
||||
isStyleApplied = true
|
||||
sw_didMoveToWindow();
|
||||
}
|
||||
|
||||
@objc var styleName: String {
|
||||
get {
|
||||
isStyleApplied = false
|
||||
guard let value = objc_getAssociatedObject(self, &AssociatedKeys.styleName) as? String else {
|
||||
return ""
|
||||
}
|
||||
return value
|
||||
}
|
||||
set(newValue) {
|
||||
objc_setAssociatedObject(self, &AssociatedKeys.styleName, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
||||
}
|
||||
}
|
||||
|
||||
@objc var isStyleApplied: Bool {
|
||||
get {
|
||||
guard let value = objc_getAssociatedObject(self, &AssociatedKeys.isStyleApplied) as? Bool else {
|
||||
return false
|
||||
}
|
||||
return value
|
||||
}
|
||||
set(newValue) {
|
||||
objc_setAssociatedObject(self, &AssociatedKeys.isStyleApplied, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
||||
}
|
||||
}
|
||||
|
||||
@objc func setStyleAndApply(_ styleName: String) {
|
||||
self.styleName = styleName
|
||||
self.applyTheme()
|
||||
}
|
||||
}
|
|
@ -1,13 +1,13 @@
|
|||
struct AssociatedKeys {
|
||||
fileprivate struct AssociatedKeys {
|
||||
static var styleName: UInt8 = 0
|
||||
static var isStyleApplied: UInt8 = 1
|
||||
}
|
||||
|
||||
@objc extension UIView {
|
||||
@objc func sw_didMoveToWindow() {
|
||||
self.applyTheme()
|
||||
self.isStyleApplied = true
|
||||
self.sw_didMoveToWindow();
|
||||
applyTheme()
|
||||
isStyleApplied = true
|
||||
sw_didMoveToWindow();
|
||||
}
|
||||
|
||||
@objc var styleName: String {
|
||||
|
@ -37,6 +37,6 @@ struct AssociatedKeys {
|
|||
|
||||
@objc func setStyleAndApply(_ styleName: String) {
|
||||
self.styleName = styleName
|
||||
self.applyTheme()
|
||||
applyTheme()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,10 +44,12 @@ class GlobalStyleSheet: IStyleSheet {
|
|||
s.fontColor = colors.whitePrimaryText
|
||||
}
|
||||
|
||||
theme.add(styleName: "NavigationButton") { (s) -> (Void) in
|
||||
theme.add(styleName: "NavigationBarItem") { (s) -> (Void) in
|
||||
s.font = fonts.regular18
|
||||
s.fontColor = colors.whitePrimaryText
|
||||
s.fontColorDisabled = UIColor.lightGray
|
||||
s.fontColorHighlighted = colors.whitePrimaryTextHighlighted
|
||||
s.tintColor = colors.whitePrimaryText
|
||||
}
|
||||
|
||||
theme.add(styleName: "Checkmark") { (s) -> (Void) in
|
||||
|
|
|
@ -4,7 +4,7 @@ extension Checkmark {
|
|||
if styleName.isEmpty {
|
||||
styleName = "Checkmark"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
CheckmarkRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extension MWMButton {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
MWMButtonRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ extension MWMTableViewCell {
|
|||
if styleName.isEmpty {
|
||||
styleName = "MWMTableViewCell"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
MWMTableViewCellRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import Foundation
|
||||
extension RatingSummaryView {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
RatingSummaryViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
import UIKit
|
||||
extension TabView {
|
||||
@objc override func applyTheme() {
|
||||
if styleName.isEmpty {
|
||||
styleName = "TabView"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
TabViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extension UIActivityIndicatorView {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIActivityIndicatorRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,34 @@
|
|||
import UIKit
|
||||
|
||||
class UIBarButtonItemRenderer {
|
||||
class func render(_ control: UIBarButtonItem, style: Style) {
|
||||
var normalAttributes = [NSAttributedString.Key: Any]()
|
||||
var disableAttributes = [NSAttributedString.Key: Any]()
|
||||
var highlightedAttributes = [NSAttributedString.Key: Any]()
|
||||
|
||||
if let backgroundImage = style.backgroundImage {
|
||||
control.setBackgroundImage(backgroundImage, for: .normal, barMetrics: .default)
|
||||
}
|
||||
if let tintColor = style.tintColor {
|
||||
control.tintColor = tintColor
|
||||
}
|
||||
if let backgroundColor = style.backgroundColor {
|
||||
let layer: CALayer = CALayer()
|
||||
layer.frame = CGRect(x: 0, y: 0, width: 30, height: 26)
|
||||
layer.masksToBounds = true
|
||||
layer.backgroundColor = backgroundColor.cgColor
|
||||
if let font = style.font {
|
||||
normalAttributes[NSAttributedString.Key.font] = font
|
||||
disableAttributes[NSAttributedString.Key.font] = font
|
||||
highlightedAttributes[NSAttributedString.Key.font] = font
|
||||
}
|
||||
if let fontColor = style.fontColor {
|
||||
normalAttributes[NSAttributedString.Key.foregroundColor] = fontColor
|
||||
}
|
||||
if let fontColorDisabled = style.fontColorDisabled {
|
||||
disableAttributes[NSAttributedString.Key.foregroundColor] = fontColorDisabled
|
||||
}
|
||||
if let fontColorHighlighted = style.fontColorHighlighted {
|
||||
highlightedAttributes[NSAttributedString.Key.foregroundColor] = fontColorHighlighted
|
||||
}
|
||||
|
||||
control.setTitleTextAttributes(normalAttributes, for: .normal)
|
||||
control.setTitleTextAttributes(disableAttributes, for: .disabled)
|
||||
control.setTitleTextAttributes(highlightedAttributes, for: .highlighted)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extension UIButton {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIButtonRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
extension UIImageView {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIImageViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UIImageViewRenderer {
|
||||
class UIImageViewRenderer: UIViewRenderer {
|
||||
class func render(_ control: UIImageView, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let image = style.image {
|
||||
control.image = UIImage(named: image)
|
||||
}
|
||||
|
|
|
@ -12,9 +12,8 @@ extension UILabel {
|
|||
}
|
||||
|
||||
@objc override func applyTheme() {
|
||||
let styles = StyleManager.instance().getStyle(styleName)
|
||||
let styles = StyleManager.shared.getStyle(styleName)
|
||||
for style in styles {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
UILabelRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +21,7 @@ extension UILabel {
|
|||
@objc func sw_setAttributedText(text: NSAttributedString) -> CGRect {
|
||||
var attributedString = text
|
||||
if styleName.isEmpty == false {
|
||||
let styles = StyleManager.instance().getStyle(styleName)
|
||||
let styles = StyleManager.shared.getStyle(styleName)
|
||||
for style in styles where style.attributes != nil {
|
||||
attributedString = UILabelRenderer.transformText(style: style,
|
||||
text: attributedString)
|
||||
|
@ -32,8 +31,9 @@ extension UILabel {
|
|||
}
|
||||
}
|
||||
|
||||
class UILabelRenderer {
|
||||
class UILabelRenderer: UIViewRenderer {
|
||||
class func render(_ control: UILabel, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let font = style.font {
|
||||
control.font = font
|
||||
}
|
||||
|
|
|
@ -1,19 +1,18 @@
|
|||
import UIKit
|
||||
|
||||
extension UINavigationBar {
|
||||
@objc override func applyTheme() {
|
||||
if styleName.isEmpty {
|
||||
styleName = "NavigationBar"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UINavigationBarRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UINavigationBarRenderer {
|
||||
class UINavigationBarRenderer: UIViewRenderer {
|
||||
class func render(_ control: UINavigationBar, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let barTintColor = style.barTintColor {
|
||||
control.barTintColor = barTintColor
|
||||
}
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
import UIKit
|
||||
extension UINavigationItem {
|
||||
@objc func applyTheme() {
|
||||
assertionFailure("Can't apply on non UIView")
|
||||
if styleName.isEmpty {
|
||||
styleName = "NavigationBarItem"
|
||||
}
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UINavigationItemRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UINavigationItemRenderer {
|
||||
class func render(_ control: UINavigationItem, style: Style) {
|
||||
if let item = control.backBarButtonItem {
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
import UIKit
|
||||
extension UIPageControl {
|
||||
@objc override func applyTheme() {
|
||||
if styleName.isEmpty {
|
||||
styleName = "PageControl"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIPageControlenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,15 +4,15 @@ extension UISearchBar {
|
|||
if styleName.isEmpty {
|
||||
styleName = "SearchBar"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UISearchBarRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UISearchBarRenderer {
|
||||
class UISearchBarRenderer: UIViewRenderer {
|
||||
class func render(_ control: UISearchBar, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let backgroundColor = style.backgroundColor {
|
||||
control.searchTextField.backgroundColor = backgroundColor
|
||||
}
|
||||
|
|
|
@ -3,15 +3,15 @@ extension UISwitch {
|
|||
if styleName.isEmpty {
|
||||
styleName = "Switch"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UISwitchRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UISwitchRenderer {
|
||||
class UISwitchRenderer: UIViewRenderer {
|
||||
class func render(_ control: UISwitch, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let onTintColor = style.onTintColor {
|
||||
control.onTintColor = onTintColor
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ extension UITableViewCell {
|
|||
if styleName.isEmpty {
|
||||
styleName = "TableCell"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UITableViewCellRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ extension UITableViewHeaderFooterView {
|
|||
if styleName.isEmpty {
|
||||
styleName = "TableViewHeaderFooterView"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UITableViewHeaderFooterViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,15 +3,15 @@ extension UITableView {
|
|||
if styleName.isEmpty {
|
||||
styleName = "TableView"
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UITableViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class UITableViewRenderer {
|
||||
class UITableViewRenderer: UIViewRenderer {
|
||||
class func render(_ control: UITableView, style: Style) {
|
||||
super.render(control, style: style)
|
||||
if let backgroundColor = style.backgroundColor {
|
||||
control.backgroundView = UIImageView(image: backgroundColor.getImage())
|
||||
}
|
||||
|
|
|
@ -1,20 +1,14 @@
|
|||
extension UITextField {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UITextFieldRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
||||
@objc func sw_textRect(forBounds bounds: CGRect) -> CGRect {
|
||||
if !isStyleApplied {
|
||||
applyTheme()
|
||||
}
|
||||
@objc override func sw_didMoveToWindow() {
|
||||
applyTheme()
|
||||
isStyleApplied = true
|
||||
return self.sw_textRect(forBounds: bounds)
|
||||
}
|
||||
|
||||
@objc func sw_editingRect(bounds: CGRect) -> CGRect {
|
||||
return self.textRect(forBounds: bounds)
|
||||
sw_didMoveToWindow();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extension UITextView {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UITextViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
extension UIToolbar {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIToolbarRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ extension UIView {
|
|||
if type(of: self.superview) == UINavigationBar.self {
|
||||
return;
|
||||
}
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
extension UIWindow {
|
||||
@objc override func applyTheme() {
|
||||
for style in StyleManager.instance().getStyle(styleName) {
|
||||
UIViewRenderer.render(self, style: style)
|
||||
for style in StyleManager.shared.getStyle(styleName) {
|
||||
UIWindowRenderer.render(self, style: style)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ NS_ASSUME_NONNULL_BEGIN
|
|||
|
||||
@interface SwizzleStyle : NSObject
|
||||
|
||||
+ (void)addSwizzle;
|
||||
+ (void)swizzle:(Class)forClass methodName:(NSString*)methodName;
|
||||
|
||||
@end
|
||||
|
25
iphone/Maps/Core/Theme/Swizzle/SwizzleStyle.m
Normal file
25
iphone/Maps/Core/Theme/Swizzle/SwizzleStyle.m
Normal file
|
@ -0,0 +1,25 @@
|
|||
#import "SwizzleStyle.h"
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "objc/runtime.h"
|
||||
#import "objc/message.h"
|
||||
|
||||
@implementation SwizzleStyle
|
||||
+ (void)swizzle:(Class)forClass methodName:(NSString*)methodName
|
||||
{
|
||||
SEL originalMethod = NSSelectorFromString(methodName);
|
||||
SEL newMethod = NSSelectorFromString([NSString stringWithFormat:@"%@%@", @"sw_", methodName]);
|
||||
[SwizzleStyle swizzle:forClass from:originalMethod to:newMethod];
|
||||
}
|
||||
|
||||
+ (void)swizzle:(Class)forClass from:(SEL)original to:(SEL)new
|
||||
{
|
||||
Method originalMethod = class_getInstanceMethod(forClass, original);
|
||||
Method newMethod = class_getInstanceMethod(forClass, new);
|
||||
if (class_addMethod(forClass, original, method_getImplementation(newMethod), method_getTypeEncoding(newMethod))) {
|
||||
class_replaceMethod(forClass, new, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));
|
||||
} else {
|
||||
method_exchangeImplementations(originalMethod, newMethod);
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
|
@ -0,0 +1,9 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface UINavigationItem (swizzle)
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
|
@ -0,0 +1,8 @@
|
|||
#import "UINavigationItem+swizzle.h"
|
||||
#import "SwizzleStyle.h"
|
||||
|
||||
@implementation UINavigationItem (swizzle)
|
||||
+(void)load {
|
||||
[SwizzleStyle swizzle:[self class] methodName:@"didMoveToWindow"];
|
||||
}
|
||||
@end
|
9
iphone/Maps/Core/Theme/Swizzle/UITextField+swizzle.h
Normal file
9
iphone/Maps/Core/Theme/Swizzle/UITextField+swizzle.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface UITextField (swizzle)
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
10
iphone/Maps/Core/Theme/Swizzle/UITextField+swizzle.m
Normal file
10
iphone/Maps/Core/Theme/Swizzle/UITextField+swizzle.m
Normal file
|
@ -0,0 +1,10 @@
|
|||
#import "UITextField+swizzle.h"
|
||||
#import "SwizzleStyle.h"
|
||||
|
||||
@implementation UITextField (swizzle)
|
||||
+(void)load {
|
||||
if (@available(iOS 12, *)) {
|
||||
[SwizzleStyle swizzle:[self class] methodName:@"didMoveToWindow"];
|
||||
}
|
||||
}
|
||||
@end
|
9
iphone/Maps/Core/Theme/Swizzle/UIView+swizzle.h
Normal file
9
iphone/Maps/Core/Theme/Swizzle/UIView+swizzle.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface UIView (swizzle)
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
8
iphone/Maps/Core/Theme/Swizzle/UIView+swizzle.m
Normal file
8
iphone/Maps/Core/Theme/Swizzle/UIView+swizzle.m
Normal file
|
@ -0,0 +1,8 @@
|
|||
#import "SwizzleStyle.h"
|
||||
#import "UIView+swizzle.h"
|
||||
|
||||
@implementation UIView (swizzle)
|
||||
+(void)load {
|
||||
[SwizzleStyle swizzle:[self class] methodName:@"didMoveToWindow"];
|
||||
}
|
||||
@end
|
9
iphone/Maps/Core/Theme/Swizzle/UIWindow+swizzle.h
Normal file
9
iphone/Maps/Core/Theme/Swizzle/UIWindow+swizzle.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface UIWindow (swizzle)
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
8
iphone/Maps/Core/Theme/Swizzle/UIWindow+swizzle.m
Normal file
8
iphone/Maps/Core/Theme/Swizzle/UIWindow+swizzle.m
Normal file
|
@ -0,0 +1,8 @@
|
|||
#import "UIWindow+swizzle.h"
|
||||
#import "SwizzleStyle.h"
|
||||
|
||||
@implementation UIWindow (swizzle)
|
||||
+(void)load {
|
||||
[SwizzleStyle swizzle:[self class] methodName:@"becomeKeyWindow"];
|
||||
}
|
||||
@end
|
|
@ -570,6 +570,11 @@
|
|||
991FCA2423B11E61009AD684 /* BookmarksStyleSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991FCA2323B11E61009AD684 /* BookmarksStyleSheet.swift */; };
|
||||
991FCA2623B11EDE009AD684 /* UITextViewRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991FCA2523B11EDE009AD684 /* UITextViewRenderer.swift */; };
|
||||
991FCA2823B12201009AD684 /* CheckmarkRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991FCA2723B12201009AD684 /* CheckmarkRenderer.swift */; };
|
||||
9929693B23D89B7100B0D5D9 /* UIView+swizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929693A23D89B7100B0D5D9 /* UIView+swizzle.m */; };
|
||||
9929693E23D89C1400B0D5D9 /* UITextField+swizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929693D23D89C1400B0D5D9 /* UITextField+swizzle.m */; };
|
||||
9929694323D89D8A00B0D5D9 /* UIWindow+swizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929694223D89D8A00B0D5D9 /* UIWindow+swizzle.m */; };
|
||||
9929694623D8A32200B0D5D9 /* UINavigationItem+swizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929694523D8A32200B0D5D9 /* UINavigationItem+swizzle.m */; };
|
||||
9929694823D8A3CB00B0D5D9 /* UINavigationItem+styleName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9929694723D8A3CB00B0D5D9 /* UINavigationItem+styleName.swift */; };
|
||||
993F5507237C622700545511 /* DeepLinkSearchStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993F54F8237C622700545511 /* DeepLinkSearchStrategy.swift */; };
|
||||
993F5508237C622700545511 /* DeepLinkRouteStrategyAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 993F54F9237C622700545511 /* DeepLinkRouteStrategyAdapter.mm */; };
|
||||
993F5509237C622700545511 /* DeepLinkHandlerStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993F54FA237C622700545511 /* DeepLinkHandlerStrategy.swift */; };
|
||||
|
@ -1614,6 +1619,15 @@
|
|||
991FCA2323B11E61009AD684 /* BookmarksStyleSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BookmarksStyleSheet.swift; sourceTree = "<group>"; };
|
||||
991FCA2523B11EDE009AD684 /* UITextViewRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITextViewRenderer.swift; sourceTree = "<group>"; };
|
||||
991FCA2723B12201009AD684 /* CheckmarkRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckmarkRenderer.swift; sourceTree = "<group>"; };
|
||||
9929693923D89B7000B0D5D9 /* UIView+swizzle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+swizzle.h"; sourceTree = "<group>"; };
|
||||
9929693A23D89B7100B0D5D9 /* UIView+swizzle.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+swizzle.m"; sourceTree = "<group>"; };
|
||||
9929693C23D89C1400B0D5D9 /* UITextField+swizzle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITextField+swizzle.h"; sourceTree = "<group>"; };
|
||||
9929693D23D89C1400B0D5D9 /* UITextField+swizzle.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITextField+swizzle.m"; sourceTree = "<group>"; };
|
||||
9929694123D89D8A00B0D5D9 /* UIWindow+swizzle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIWindow+swizzle.h"; sourceTree = "<group>"; };
|
||||
9929694223D89D8A00B0D5D9 /* UIWindow+swizzle.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+swizzle.m"; sourceTree = "<group>"; };
|
||||
9929694423D8A32200B0D5D9 /* UINavigationItem+swizzle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UINavigationItem+swizzle.h"; sourceTree = "<group>"; };
|
||||
9929694523D8A32200B0D5D9 /* UINavigationItem+swizzle.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UINavigationItem+swizzle.m"; sourceTree = "<group>"; };
|
||||
9929694723D8A3CB00B0D5D9 /* UINavigationItem+styleName.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UINavigationItem+styleName.swift"; sourceTree = "<group>"; };
|
||||
993F54F8237C622700545511 /* DeepLinkSearchStrategy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeepLinkSearchStrategy.swift; sourceTree = "<group>"; };
|
||||
993F54F9237C622700545511 /* DeepLinkRouteStrategyAdapter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeepLinkRouteStrategyAdapter.mm; sourceTree = "<group>"; };
|
||||
993F54FA237C622700545511 /* DeepLinkHandlerStrategy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DeepLinkHandlerStrategy.swift; sourceTree = "<group>"; };
|
||||
|
@ -3587,6 +3601,23 @@
|
|||
path = PromoAfterBookingCampaign;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
9929694923D8A3D600B0D5D9 /* Swizzle */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
994AEC0223AB763C0079B81F /* SwizzleStyle.h */,
|
||||
994AEC0523AB763C0079B81F /* SwizzleStyle.m */,
|
||||
9929693923D89B7000B0D5D9 /* UIView+swizzle.h */,
|
||||
9929693A23D89B7100B0D5D9 /* UIView+swizzle.m */,
|
||||
9929693C23D89C1400B0D5D9 /* UITextField+swizzle.h */,
|
||||
9929693D23D89C1400B0D5D9 /* UITextField+swizzle.m */,
|
||||
9929694123D89D8A00B0D5D9 /* UIWindow+swizzle.h */,
|
||||
9929694223D89D8A00B0D5D9 /* UIWindow+swizzle.m */,
|
||||
9929694423D8A32200B0D5D9 /* UINavigationItem+swizzle.h */,
|
||||
9929694523D8A32200B0D5D9 /* UINavigationItem+swizzle.m */,
|
||||
);
|
||||
path = Swizzle;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
993F54EB237C5CD800545511 /* Recovered References */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
|
@ -3644,6 +3675,7 @@
|
|||
999FC12523ABAF5200B0E6F9 /* Core */,
|
||||
994AEBE523AB763C0079B81F /* Renderers */,
|
||||
994AEBFF23AB763C0079B81F /* Extensions */,
|
||||
9929694923D8A3D600B0D5D9 /* Swizzle */,
|
||||
994AEC0623AB763C0079B81F /* Components */,
|
||||
994AEBE423AB763C0079B81F /* Colors.swift */,
|
||||
999FC12323ABACED00B0E6F9 /* Fonts.swift */,
|
||||
|
@ -3696,8 +3728,7 @@
|
|||
isa = PBXGroup;
|
||||
children = (
|
||||
994AEC0023AB763C0079B81F /* UIView+styleName.swift */,
|
||||
994AEC0223AB763C0079B81F /* SwizzleStyle.h */,
|
||||
994AEC0523AB763C0079B81F /* SwizzleStyle.m */,
|
||||
9929694723D8A3CB00B0D5D9 /* UINavigationItem+styleName.swift */,
|
||||
994AEC0323AB763C0079B81F /* UIColor+rgba.swift */,
|
||||
994AEC0423AB763C0079B81F /* UIColor+image.swift */,
|
||||
);
|
||||
|
@ -5229,6 +5260,7 @@
|
|||
BB8123D62130427E00ADE512 /* MetalContextFactory.mm in Sources */,
|
||||
3467CEB2202C6EEE00D3C670 /* BMCNotificationsHeader.swift in Sources */,
|
||||
34F4072F1E9E1AFF00E57AC0 /* BannersCache.swift in Sources */,
|
||||
9929693E23D89C1400B0D5D9 /* UITextField+swizzle.m in Sources */,
|
||||
34D3B0211E389D05004100F9 /* MWMEditorAddAdditionalNameTableViewCell.m in Sources */,
|
||||
999FC12923ABAFFE00B0E6F9 /* GlobalStyleSheet.swift in Sources */,
|
||||
99D363192358685300941BF4 /* SubscriptionGroupItem.swift in Sources */,
|
||||
|
@ -5249,6 +5281,7 @@
|
|||
34D3B0421E389D05004100F9 /* MWMEditorTextTableViewCell.m in Sources */,
|
||||
47FA14D1230D52FC003DA979 /* PhoneNumberAuthorizationViewController.swift in Sources */,
|
||||
340708651F2905A500029ECC /* NavigationInfoArea.swift in Sources */,
|
||||
9929694823D8A3CB00B0D5D9 /* UINavigationItem+styleName.swift in Sources */,
|
||||
34AB666B1FC5AA330078E451 /* TransportTransitCell.swift in Sources */,
|
||||
3404163C1E7BDFE000E2B6D6 /* PhotosViewController.swift in Sources */,
|
||||
47E8163323B17734008FD836 /* MWMStorage+UI.m in Sources */,
|
||||
|
@ -5301,6 +5334,7 @@
|
|||
47E3C7292111E614008B3B27 /* FadeInAnimatedTransitioning.swift in Sources */,
|
||||
34AB667D1FC5AA330078E451 /* MWMRoutePreview.mm in Sources */,
|
||||
99F50FCA23B3852F00E95228 /* UIToolbarRenderer.swift in Sources */,
|
||||
9929693B23D89B7100B0D5D9 /* UIView+swizzle.m in Sources */,
|
||||
B33D21AC20DA515800BAD749 /* MWMCategoryInfoCell.mm in Sources */,
|
||||
473CBF9B2164DD470059BD54 /* SettingsTableViewSelectableProgressCell.swift in Sources */,
|
||||
47E3C72D2111E6A2008B3B27 /* FadeTransitioning.swift in Sources */,
|
||||
|
@ -5310,6 +5344,7 @@
|
|||
47A04171238DE8AE00D84E95 /* HotelFacilitiesViewController.swift in Sources */,
|
||||
479D306522C664CE00D18278 /* MWMDownloadBannerViewController.m in Sources */,
|
||||
F6E2FEDF1E097BA00083EBEC /* MWMSearchManager+Layout.m in Sources */,
|
||||
9929694623D8A32200B0D5D9 /* UINavigationItem+swizzle.m in Sources */,
|
||||
F64D9CA01C899C350063FA30 /* MWMEditorViralAlert.mm in Sources */,
|
||||
34AC8FD11EFC02C000E7F910 /* MWMRoutePoint.mm in Sources */,
|
||||
CDB4D5012231412900104869 /* ListTemplateBuilder.swift in Sources */,
|
||||
|
@ -5352,6 +5387,7 @@
|
|||
47B9065421C7FA400079C85E /* UIImageView+WebImage.m in Sources */,
|
||||
F6E2FF481E097BA00083EBEC /* SettingsTableViewSelectableCell.swift in Sources */,
|
||||
994AEC2D23AB763C0079B81F /* StyleManager.swift in Sources */,
|
||||
9929694323D89D8A00B0D5D9 /* UIWindow+swizzle.m in Sources */,
|
||||
34BBD6581F826F810070CA50 /* AuthorizationTransitioningManager.swift in Sources */,
|
||||
33F7668F21A57CDF00A88B16 /* EditOnWebViewController.swift in Sources */,
|
||||
34AB664A1FC5AA330078E451 /* RouteManageriPadPresentationController.swift in Sources */,
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@objc(MWMDownloaderNoResultsEmbedViewController)
|
||||
final class DownloaderNoResultsEmbed: UINavigationController {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
final class PhotosTransitionAnimator: NSObject, UIViewControllerAnimatedTransitioning {
|
||||
private enum Settings {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
final class UGCSummaryRatingStarsCell: UICollectionViewCell {
|
||||
@IBOutlet private weak var ratingView: RatingView! {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
final class SearchNoResultsViewController: MWMViewController {
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
class DrivingOptionsViewController: MWMTableViewController {
|
||||
let options = RoutingOptions()
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@objc(MWMStoryboard)
|
||||
enum Storyboard: Int {
|
||||
case authorization
|
||||
|
|
|
@ -18,7 +18,7 @@ class PromoDiscoveryPresenter {
|
|||
}
|
||||
|
||||
extension PromoDiscoveryPresenter: IPromoRouterPresenter {
|
||||
func configure(){
|
||||
func configure() {
|
||||
switch campaign.group {
|
||||
case .discoverCatalog:
|
||||
viewController?.setTitleImage(UIImage(named: "img_onboarding_subscribeguides"))
|
||||
|
|
|
@ -43,7 +43,7 @@ class TermsOfUseViewController: MWMViewController {
|
|||
}
|
||||
|
||||
@IBAction func onCheck(_ sender: Checkmark) {
|
||||
if (privacyPolicyCheck.isChecked && termsOfUseCheck.isChecked){
|
||||
if (privacyPolicyCheck.isChecked && termsOfUseCheck.isChecked) {
|
||||
presenter?.onNext()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import UIKit
|
||||
|
||||
@objc(MWMWelcomePageControllerProtocol)
|
||||
protocol WelcomePageControllerProtocol {
|
||||
var view: UIView! { get set }
|
||||
|
|
Loading…
Add table
Reference in a new issue