Showing
7 changed files
with
96 additions
and
54 deletions
No preview for this file type
... | @@ -72,6 +72,14 @@ import SwiftEventBus | ... | @@ -72,6 +72,14 @@ import SwiftEventBus |
72 | redeemButton.setTitleColor(.white, for: .normal) | 72 | redeemButton.setTitleColor(.white, for: .normal) |
73 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) | 73 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) |
74 | redeemButton.layer.cornerRadius = 12.0 | 74 | redeemButton.layer.cornerRadius = 12.0 |
75 | + // Fix width for ipad | ||
76 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
77 | + // iPad | ||
78 | + redeemButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
79 | + } else { | ||
80 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
81 | + redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
82 | + } | ||
75 | 83 | ||
76 | } | 84 | } |
77 | 85 | ... | ... |
... | @@ -118,12 +118,28 @@ import AVFoundation | ... | @@ -118,12 +118,28 @@ import AVFoundation |
118 | redeemButton.setTitleColor(.white, for: .normal) | 118 | redeemButton.setTitleColor(.white, for: .normal) |
119 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) | 119 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) |
120 | redeemButton.layer.cornerRadius = 12.0 | 120 | redeemButton.layer.cornerRadius = 12.0 |
121 | + // Fix width for ipad | ||
122 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
123 | + // iPad | ||
124 | + redeemButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
125 | + } else { | ||
126 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
127 | + redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
128 | + } | ||
121 | 129 | ||
122 | mapButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) | 130 | mapButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) |
123 | mapButton.setTitle("Δες τα καταστήματα", for: .normal) | 131 | mapButton.setTitle("Δες τα καταστήματα", for: .normal) |
124 | mapButton.setTitleColor(UIColor(red: 0.31, green: 0.62, blue: 0.18, alpha: 1.00), for: .normal) | 132 | mapButton.setTitleColor(UIColor(red: 0.31, green: 0.62, blue: 0.18, alpha: 1.00), for: .normal) |
125 | mapButton.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) | 133 | mapButton.backgroundColor = UIColor(red: 0.90, green: 0.90, blue: 0.90, alpha: 1.00) |
126 | mapButton.layer.cornerRadius = 12.0 | 134 | mapButton.layer.cornerRadius = 12.0 |
135 | + // Fix width for ipad | ||
136 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
137 | + // iPad | ||
138 | + mapButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
139 | + } else { | ||
140 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
141 | + mapButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
142 | + } | ||
127 | 143 | ||
128 | termsButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Regular", size: 16) | 144 | termsButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Regular", size: 16) |
129 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | 145 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | ... | ... |
... | @@ -79,6 +79,14 @@ import SwiftEventBus | ... | @@ -79,6 +79,14 @@ import SwiftEventBus |
79 | redeemButton.setTitleColor(.white, for: .normal) | 79 | redeemButton.setTitleColor(.white, for: .normal) |
80 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) | 80 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) |
81 | redeemButton.layer.cornerRadius = 12.0 | 81 | redeemButton.layer.cornerRadius = 12.0 |
82 | + // Fix width for ipad | ||
83 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
84 | + // iPad | ||
85 | + redeemButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
86 | + } else { | ||
87 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
88 | + redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
89 | + } | ||
82 | 90 | ||
83 | termsButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) | 91 | termsButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Medium", size: 16) |
84 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | 92 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | ... | ... |
... | @@ -46,46 +46,46 @@ | ... | @@ -46,46 +46,46 @@ |
46 | <color key="sectionIndexBackgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 46 | <color key="sectionIndexBackgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
47 | <prototypes> | 47 | <prototypes> |
48 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CouponsTableViewCellId" id="Ivk-7o-eVp" customClass="CouponsTableViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 48 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CouponsTableViewCellId" id="Ivk-7o-eVp" customClass="CouponsTableViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
49 | - <rect key="frame" x="0.0" y="44.5" width="414" height="105"/> | 49 | + <rect key="frame" x="0.0" y="44.5" width="414" height="116.5"/> |
50 | <autoresizingMask key="autoresizingMask"/> | 50 | <autoresizingMask key="autoresizingMask"/> |
51 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Ivk-7o-eVp" id="OpF-ry-8Pc"> | 51 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Ivk-7o-eVp" id="OpF-ry-8Pc"> |
52 | - <rect key="frame" x="0.0" y="0.0" width="414" height="105"/> | 52 | + <rect key="frame" x="0.0" y="0.0" width="414" height="116.5"/> |
53 | <autoresizingMask key="autoresizingMask"/> | 53 | <autoresizingMask key="autoresizingMask"/> |
54 | <subviews> | 54 | <subviews> |
55 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JaN-ia-6ul"> | 55 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JaN-ia-6ul"> |
56 | - <rect key="frame" x="10" y="0.0" width="394" height="105"/> | 56 | + <rect key="frame" x="10" y="0.0" width="394" height="116.5"/> |
57 | <subviews> | 57 | <subviews> |
58 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="coupon_bg" translatesAutoresizingMaskIntoConstraints="NO" id="2YB-QL-me8"> | 58 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="coupon_bg" translatesAutoresizingMaskIntoConstraints="NO" id="2YB-QL-me8"> |
59 | - <rect key="frame" x="0.0" y="0.0" width="394" height="105"/> | 59 | + <rect key="frame" x="0.0" y="0.0" width="394" height="116.5"/> |
60 | </imageView> | 60 | </imageView> |
61 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="qgV-LI-5lL"> | 61 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="qgV-LI-5lL"> |
62 | - <rect key="frame" x="20" y="10" width="79" height="85"/> | 62 | + <rect key="frame" x="20" y="10" width="79" height="96.5"/> |
63 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 63 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
64 | </imageView> | 64 | </imageView> |
65 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kWi-pp-keF"> | 65 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kWi-pp-keF"> |
66 | - <rect key="frame" x="104" y="5" width="10" height="95"/> | 66 | + <rect key="frame" x="104" y="5" width="10" height="106.5"/> |
67 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 67 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
68 | <constraints> | 68 | <constraints> |
69 | <constraint firstAttribute="width" constant="10" id="UQ1-xk-Qqc"/> | 69 | <constraint firstAttribute="width" constant="10" id="UQ1-xk-Qqc"/> |
70 | </constraints> | 70 | </constraints> |
71 | </view> | 71 | </view> |
72 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gWw-Mr-bn2"> | 72 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gWw-Mr-bn2"> |
73 | - <rect key="frame" x="119" y="15" width="255" height="17"/> | 73 | + <rect key="frame" x="119" y="15" width="255" height="20"/> |
74 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> | 74 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> |
75 | <color key="textColor" red="0.22745098039215686" green="0.32156862745098036" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 75 | <color key="textColor" red="0.22745098039215686" green="0.32156862745098036" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
76 | <nil key="highlightedColor"/> | 76 | <nil key="highlightedColor"/> |
77 | </label> | 77 | </label> |
78 | <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="URC-i5-9Gw"> | 78 | <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="URC-i5-9Gw"> |
79 | - <rect key="frame" x="119" y="37" width="255" height="31"/> | 79 | + <rect key="frame" x="119" y="40" width="255" height="36.5"/> |
80 | <subviews> | 80 | <subviews> |
81 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ssk-9S-HMD"> | 81 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ssk-9S-HMD"> |
82 | - <rect key="frame" x="0.0" y="0.0" width="127.5" height="31"/> | 82 | + <rect key="frame" x="0.0" y="0.0" width="127.5" height="36.5"/> |
83 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="31"/> | 83 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="31"/> |
84 | <color key="textColor" red="0.22745098039215686" green="0.32156862745098036" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 84 | <color key="textColor" red="0.22745098039215686" green="0.32156862745098036" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
85 | <nil key="highlightedColor"/> | 85 | <nil key="highlightedColor"/> |
86 | </label> | 86 | </label> |
87 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hWa-mr-cXD"> | 87 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hWa-mr-cXD"> |
88 | - <rect key="frame" x="132.5" y="0.0" width="122.5" height="31"/> | 88 | + <rect key="frame" x="132.5" y="0.0" width="122.5" height="36.5"/> |
89 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 89 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
90 | <color key="textColor" red="0.38039215686274508" green="0.44313725490196076" blue="0.50588235294117645" alpha="1" colorSpace="calibratedRGB"/> | 90 | <color key="textColor" red="0.38039215686274508" green="0.44313725490196076" blue="0.50588235294117645" alpha="1" colorSpace="calibratedRGB"/> |
91 | <nil key="highlightedColor"/> | 91 | <nil key="highlightedColor"/> |
... | @@ -97,7 +97,7 @@ | ... | @@ -97,7 +97,7 @@ |
97 | </constraints> | 97 | </constraints> |
98 | </stackView> | 98 | </stackView> |
99 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Kdt-I2-GtS"> | 99 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Kdt-I2-GtS"> |
100 | - <rect key="frame" x="119" y="78" width="255" height="12"/> | 100 | + <rect key="frame" x="119" y="87.5" width="255" height="14"/> |
101 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 101 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
102 | <color key="textColor" red="0.38039215686274508" green="0.44313725490196076" blue="0.50588235294117645" alpha="1" colorSpace="calibratedRGB"/> | 102 | <color key="textColor" red="0.38039215686274508" green="0.44313725490196076" blue="0.50588235294117645" alpha="1" colorSpace="calibratedRGB"/> |
103 | <nil key="highlightedColor"/> | 103 | <nil key="highlightedColor"/> |
... | @@ -755,10 +755,10 @@ | ... | @@ -755,10 +755,10 @@ |
755 | <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> | 755 | <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> |
756 | <subviews> | 756 | <subviews> |
757 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Et1-y7-npI" userLabel="HeaderView"> | 757 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Et1-y7-npI" userLabel="HeaderView"> |
758 | - <rect key="frame" x="0.0" y="0.0" width="414" height="175"/> | 758 | + <rect key="frame" x="0.0" y="0.0" width="414" height="181"/> |
759 | <subviews> | 759 | <subviews> |
760 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_background_circle" translatesAutoresizingMaskIntoConstraints="NO" id="wP5-YG-vSP"> | 760 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_background_circle" translatesAutoresizingMaskIntoConstraints="NO" id="wP5-YG-vSP"> |
761 | - <rect key="frame" x="0.0" y="0.0" width="414" height="175"/> | 761 | + <rect key="frame" x="0.0" y="0.0" width="414" height="181"/> |
762 | </imageView> | 762 | </imageView> |
763 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wJv-NF-rMf"> | 763 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wJv-NF-rMf"> |
764 | <rect key="frame" x="174.5" y="30" width="65" height="65"/> | 764 | <rect key="frame" x="174.5" y="30" width="65" height="65"/> |
... | @@ -768,13 +768,13 @@ | ... | @@ -768,13 +768,13 @@ |
768 | </constraints> | 768 | </constraints> |
769 | </imageView> | 769 | </imageView> |
770 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Γιώργος Γεωργίου" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1XZ-NB-F8P"> | 770 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Γιώργος Γεωργίου" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1XZ-NB-F8P"> |
771 | - <rect key="frame" x="20" y="105" width="374" height="16"/> | 771 | + <rect key="frame" x="20" y="105" width="374" height="19"/> |
772 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="16"/> | 772 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="16"/> |
773 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/> | 773 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/> |
774 | <nil key="highlightedColor"/> | 774 | <nil key="highlightedColor"/> |
775 | </label> | 775 | </label> |
776 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="tailTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UNL-Oh-sPV"> | 776 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="tailTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UNL-Oh-sPV"> |
777 | - <rect key="frame" x="176.5" y="131" width="61" height="24"/> | 777 | + <rect key="frame" x="175.5" y="134" width="63" height="27"/> |
778 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 778 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
779 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="14"/> | 779 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="14"/> |
780 | <inset key="contentEdgeInsets" minX="10" minY="5" maxX="10" maxY="5"/> | 780 | <inset key="contentEdgeInsets" minX="10" minY="5" maxX="10" maxY="5"/> |
... | @@ -806,7 +806,7 @@ | ... | @@ -806,7 +806,7 @@ |
806 | </constraints> | 806 | </constraints> |
807 | </view> | 807 | </view> |
808 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hdz-dS-6jm"> | 808 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hdz-dS-6jm"> |
809 | - <rect key="frame" x="45" y="205" width="359" height="75"/> | 809 | + <rect key="frame" x="45" y="211" width="359" height="75"/> |
810 | <subviews> | 810 | <subviews> |
811 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="EpZ-Qo-xby"> | 811 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="EpZ-Qo-xby"> |
812 | <rect key="frame" x="-35" y="2.5" width="70" height="70"/> | 812 | <rect key="frame" x="-35" y="2.5" width="70" height="70"/> |
... | @@ -815,7 +815,7 @@ | ... | @@ -815,7 +815,7 @@ |
815 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> | 815 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> |
816 | </imageView> | 816 | </imageView> |
817 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="18,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIw-YV-t1D"> | 817 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="18,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AIw-YV-t1D"> |
818 | - <rect key="frame" x="5" y="42" width="60" height="11"/> | 818 | + <rect key="frame" x="5" y="40" width="60" height="13"/> |
819 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> | 819 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> |
820 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 820 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
821 | <nil key="highlightedColor"/> | 821 | <nil key="highlightedColor"/> |
... | @@ -835,7 +835,7 @@ | ... | @@ -835,7 +835,7 @@ |
835 | </constraints> | 835 | </constraints> |
836 | </view> | 836 | </view> |
837 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 18,00€ με το DEALS for YOU!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h7B-UX-3wG"> | 837 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 18,00€ με το DEALS for YOU!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h7B-UX-3wG"> |
838 | - <rect key="frame" x="45" y="20.5" width="304" height="34"/> | 838 | + <rect key="frame" x="45" y="17.5" width="304" height="40"/> |
839 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="17"/> | 839 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="17"/> |
840 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 840 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
841 | <nil key="highlightedColor"/> | 841 | <nil key="highlightedColor"/> |
... | @@ -867,7 +867,7 @@ | ... | @@ -867,7 +867,7 @@ |
867 | </constraints> | 867 | </constraints> |
868 | </view> | 868 | </view> |
869 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Fef-hi-2VL"> | 869 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Fef-hi-2VL"> |
870 | - <rect key="frame" x="45" y="310" width="359" height="75"/> | 870 | + <rect key="frame" x="45" y="316" width="359" height="75"/> |
871 | <subviews> | 871 | <subviews> |
872 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="LLM-FB-EYF"> | 872 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="LLM-FB-EYF"> |
873 | <rect key="frame" x="-35" y="2.5" width="70" height="70"/> | 873 | <rect key="frame" x="-35" y="2.5" width="70" height="70"/> |
... | @@ -876,7 +876,7 @@ | ... | @@ -876,7 +876,7 @@ |
876 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> | 876 | <rect key="frame" x="0.0" y="0.0" width="70" height="70"/> |
877 | </imageView> | 877 | </imageView> |
878 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="20,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cbA-fm-1uO"> | 878 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="20,00€" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cbA-fm-1uO"> |
879 | - <rect key="frame" x="5" y="42" width="60" height="11"/> | 879 | + <rect key="frame" x="5" y="40" width="60" height="13"/> |
880 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> | 880 | <fontDescription key="fontDescription" name="PFSquareSansPro-ExtraBlack" family="PF Square Sans Pro" pointSize="11"/> |
881 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> | 881 | <color key="textColor" red="0.25490196079999999" green="0.33333333329999998" blue="0.3921568627" alpha="1" colorSpace="calibratedRGB"/> |
882 | <nil key="highlightedColor"/> | 882 | <nil key="highlightedColor"/> |
... | @@ -896,7 +896,7 @@ | ... | @@ -896,7 +896,7 @@ |
896 | </constraints> | 896 | </constraints> |
897 | </view> | 897 | </view> |
898 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WdW-lP-g1v"> | 898 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Μέχρι τώρα έχεις κερδίσει 20,00€ σε προσφορές από 3 κουπόνια!" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WdW-lP-g1v"> |
899 | - <rect key="frame" x="45" y="20.5" width="304" height="34"/> | 899 | + <rect key="frame" x="45" y="17.5" width="304" height="40"/> |
900 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="17"/> | 900 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="17"/> |
901 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 901 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
902 | <nil key="highlightedColor"/> | 902 | <nil key="highlightedColor"/> |
... | @@ -928,31 +928,31 @@ | ... | @@ -928,31 +928,31 @@ |
928 | </constraints> | 928 | </constraints> |
929 | </view> | 929 | </view> |
930 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="dfy_logo_white" translatesAutoresizingMaskIntoConstraints="NO" id="gdf-s4-2CF"> | 930 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="dfy_logo_white" translatesAutoresizingMaskIntoConstraints="NO" id="gdf-s4-2CF"> |
931 | - <rect key="frame" x="20" y="425" width="124" height="40"/> | 931 | + <rect key="frame" x="20" y="431" width="124" height="40"/> |
932 | <constraints> | 932 | <constraints> |
933 | <constraint firstAttribute="height" constant="40" id="Ch9-8X-FNJ"/> | 933 | <constraint firstAttribute="height" constant="40" id="Ch9-8X-FNJ"/> |
934 | </constraints> | 934 | </constraints> |
935 | </imageView> | 935 | </imageView> |
936 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zFT-By-XHL"> | 936 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zFT-By-XHL"> |
937 | - <rect key="frame" x="10" y="475" width="394" height="100"/> | 937 | + <rect key="frame" x="10" y="481" width="394" height="100"/> |
938 | <subviews> | 938 | <subviews> |
939 | <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="MCY-xv-vpg"> | 939 | <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="MCY-xv-vpg"> |
940 | - <rect key="frame" x="20" y="23" width="254" height="54"/> | 940 | + <rect key="frame" x="20" y="18.5" width="254" height="63"/> |
941 | <subviews> | 941 | <subviews> |
942 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ενεργός κωδικός:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ucC-u4-AQL"> | 942 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ενεργός κωδικός:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ucC-u4-AQL"> |
943 | - <rect key="frame" x="0.0" y="0.0" width="254" height="19"/> | 943 | + <rect key="frame" x="0.0" y="0.0" width="254" height="22.5"/> |
944 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="19"/> | 944 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="19"/> |
945 | <color key="textColor" red="0.23529411759999999" green="0.32549019610000002" blue="0.39607843139999999" alpha="1" colorSpace="calibratedRGB"/> | 945 | <color key="textColor" red="0.23529411759999999" green="0.32549019610000002" blue="0.39607843139999999" alpha="1" colorSpace="calibratedRGB"/> |
946 | <nil key="highlightedColor"/> | 946 | <nil key="highlightedColor"/> |
947 | </label> | 947 | </label> |
948 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="961544809" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qBe-Jw-QUx"> | 948 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="961544809" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qBe-Jw-QUx"> |
949 | - <rect key="frame" x="0.0" y="21" width="254" height="19"/> | 949 | + <rect key="frame" x="0.0" y="24.5" width="254" height="22.5"/> |
950 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="19"/> | 950 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="19"/> |
951 | <color key="textColor" red="0.23529411759999999" green="0.32549019610000002" blue="0.39607843139999999" alpha="1" colorSpace="calibratedRGB"/> | 951 | <color key="textColor" red="0.23529411759999999" green="0.32549019610000002" blue="0.39607843139999999" alpha="1" colorSpace="calibratedRGB"/> |
952 | <nil key="highlightedColor"/> | 952 | <nil key="highlightedColor"/> |
953 | </label> | 953 | </label> |
954 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Λήγει σε 4 ημέρες" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qL0-3b-eqA"> | 954 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Λήγει σε 4 ημέρες" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qL0-3b-eqA"> |
955 | - <rect key="frame" x="0.0" y="42" width="254" height="12"/> | 955 | + <rect key="frame" x="0.0" y="49" width="254" height="14"/> |
956 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="12"/> | 956 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="12"/> |
957 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 957 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
958 | <nil key="highlightedColor"/> | 958 | <nil key="highlightedColor"/> |
... | @@ -993,13 +993,13 @@ | ... | @@ -993,13 +993,13 @@ |
993 | </constraints> | 993 | </constraints> |
994 | </view> | 994 | </view> |
995 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Τα δώρα μου" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FiI-Ni-wy4"> | 995 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Τα δώρα μου" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FiI-Ni-wy4"> |
996 | - <rect key="frame" x="20" y="615" width="374" height="38"/> | 996 | + <rect key="frame" x="20" y="621" width="374" height="32"/> |
997 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="21"/> | 997 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="21"/> |
998 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 998 | <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
999 | <nil key="highlightedColor"/> | 999 | <nil key="highlightedColor"/> |
1000 | </label> | 1000 | </label> |
1001 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="8YP-uG-vbV"> | 1001 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="8YP-uG-vbV"> |
1002 | - <rect key="frame" x="20" y="205" width="374" height="458"/> | 1002 | + <rect key="frame" x="20" y="211" width="374" height="452"/> |
1003 | <subviews> | 1003 | <subviews> |
1004 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="aYf-dv-3Ik"> | 1004 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="aYf-dv-3Ik"> |
1005 | <rect key="frame" x="149.5" y="0.0" width="75" height="75"/> | 1005 | <rect key="frame" x="149.5" y="0.0" width="75" height="75"/> |
... | @@ -1010,7 +1010,7 @@ | ... | @@ -1010,7 +1010,7 @@ |
1010 | </constraints> | 1010 | </constraints> |
1011 | </imageView> | 1011 | </imageView> |
1012 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SIP-ou-T3X"> | 1012 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SIP-ou-T3X"> |
1013 | - <rect key="frame" x="0.0" y="95" width="374" height="16"/> | 1013 | + <rect key="frame" x="0.0" y="95" width="374" height="19"/> |
1014 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="16"/> | 1014 | <fontDescription key="fontDescription" name="PFSquareSansPro-Regular" family="PF Square Sans Pro" pointSize="16"/> |
1015 | <color key="textColor" red="1" green="1" blue="1" alpha="0.60999999999999999" colorSpace="custom" customColorSpace="calibratedRGB"/> | 1015 | <color key="textColor" red="1" green="1" blue="1" alpha="0.60999999999999999" colorSpace="custom" customColorSpace="calibratedRGB"/> |
1016 | <nil key="highlightedColor"/> | 1016 | <nil key="highlightedColor"/> |
... | @@ -1055,46 +1055,46 @@ | ... | @@ -1055,46 +1055,46 @@ |
1055 | </view> | 1055 | </view> |
1056 | <prototypes> | 1056 | <prototypes> |
1057 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CouponsTableViewCellId" id="PUP-z1-zvb" customClass="CouponsTableViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> | 1057 | <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CouponsTableViewCellId" id="PUP-z1-zvb" customClass="CouponsTableViewCell" customModule="SwiftWarplyFramework" customModuleProvider="target"> |
1058 | - <rect key="frame" x="0.0" y="707.5" width="414" height="105"/> | 1058 | + <rect key="frame" x="0.0" y="707.5" width="414" height="116.5"/> |
1059 | <autoresizingMask key="autoresizingMask"/> | 1059 | <autoresizingMask key="autoresizingMask"/> |
1060 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="PUP-z1-zvb" id="dt2-2B-okP"> | 1060 | <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="PUP-z1-zvb" id="dt2-2B-okP"> |
1061 | - <rect key="frame" x="0.0" y="0.0" width="414" height="105"/> | 1061 | + <rect key="frame" x="0.0" y="0.0" width="414" height="116.5"/> |
1062 | <autoresizingMask key="autoresizingMask"/> | 1062 | <autoresizingMask key="autoresizingMask"/> |
1063 | <subviews> | 1063 | <subviews> |
1064 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FsY-Dp-PUQ"> | 1064 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FsY-Dp-PUQ"> |
1065 | - <rect key="frame" x="10" y="0.0" width="394" height="105"/> | 1065 | + <rect key="frame" x="10" y="0.0" width="394" height="116.5"/> |
1066 | <subviews> | 1066 | <subviews> |
1067 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="coupon_bg" translatesAutoresizingMaskIntoConstraints="NO" id="vZ4-HF-lwK"> | 1067 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="coupon_bg" translatesAutoresizingMaskIntoConstraints="NO" id="vZ4-HF-lwK"> |
1068 | - <rect key="frame" x="0.0" y="0.0" width="394" height="105"/> | 1068 | + <rect key="frame" x="0.0" y="0.0" width="394" height="116.5"/> |
1069 | </imageView> | 1069 | </imageView> |
1070 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="f2f-Lm-to3"> | 1070 | <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="f2f-Lm-to3"> |
1071 | - <rect key="frame" x="20" y="10" width="79" height="85"/> | 1071 | + <rect key="frame" x="20" y="10" width="79" height="96.5"/> |
1072 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 1072 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1073 | </imageView> | 1073 | </imageView> |
1074 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zth-sP-rUI"> | 1074 | <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zth-sP-rUI"> |
1075 | - <rect key="frame" x="104" y="5" width="10" height="95"/> | 1075 | + <rect key="frame" x="104" y="5" width="10" height="106.5"/> |
1076 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> | 1076 | <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> |
1077 | <constraints> | 1077 | <constraints> |
1078 | <constraint firstAttribute="width" constant="10" id="0jX-bF-I3k"/> | 1078 | <constraint firstAttribute="width" constant="10" id="0jX-bF-I3k"/> |
1079 | </constraints> | 1079 | </constraints> |
1080 | </view> | 1080 | </view> |
1081 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BAb-kn-pw0"> | 1081 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BAb-kn-pw0"> |
1082 | - <rect key="frame" x="119" y="15" width="255" height="17"/> | 1082 | + <rect key="frame" x="119" y="15" width="255" height="20"/> |
1083 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> | 1083 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="17"/> |
1084 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 1084 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
1085 | <nil key="highlightedColor"/> | 1085 | <nil key="highlightedColor"/> |
1086 | </label> | 1086 | </label> |
1087 | <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="RJe-Li-bx3"> | 1087 | <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="RJe-Li-bx3"> |
1088 | - <rect key="frame" x="119" y="37" width="255" height="31"/> | 1088 | + <rect key="frame" x="119" y="40" width="255" height="36.5"/> |
1089 | <subviews> | 1089 | <subviews> |
1090 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wBw-w0-bGt"> | 1090 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wBw-w0-bGt"> |
1091 | - <rect key="frame" x="0.0" y="0.0" width="127.5" height="31"/> | 1091 | + <rect key="frame" x="0.0" y="0.0" width="127.5" height="36.5"/> |
1092 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="31"/> | 1092 | <fontDescription key="fontDescription" name="PFSquareSansPro-Bold" family="PF Square Sans Pro" pointSize="31"/> |
1093 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> | 1093 | <color key="textColor" red="0.2274509804" green="0.32156862749999998" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/> |
1094 | <nil key="highlightedColor"/> | 1094 | <nil key="highlightedColor"/> |
1095 | </label> | 1095 | </label> |
1096 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yd2-ue-tBk"> | 1096 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yd2-ue-tBk"> |
1097 | - <rect key="frame" x="132.5" y="0.0" width="122.5" height="31"/> | 1097 | + <rect key="frame" x="132.5" y="0.0" width="122.5" height="36.5"/> |
1098 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 1098 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
1099 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> | 1099 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> |
1100 | <nil key="highlightedColor"/> | 1100 | <nil key="highlightedColor"/> |
... | @@ -1106,7 +1106,7 @@ | ... | @@ -1106,7 +1106,7 @@ |
1106 | </constraints> | 1106 | </constraints> |
1107 | </stackView> | 1107 | </stackView> |
1108 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EEj-3C-9Td"> | 1108 | <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EEj-3C-9Td"> |
1109 | - <rect key="frame" x="119" y="78" width="255" height="12"/> | 1109 | + <rect key="frame" x="119" y="87.5" width="255" height="14"/> |
1110 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> | 1110 | <fontDescription key="fontDescription" name="PFSquareSansPro-Medium" family="PF Square Sans Pro" pointSize="12"/> |
1111 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> | 1111 | <color key="textColor" red="0.3803921569" green="0.4431372549" blue="0.50588235290000005" alpha="1" colorSpace="calibratedRGB"/> |
1112 | <nil key="highlightedColor"/> | 1112 | <nil key="highlightedColor"/> |
... | @@ -1443,7 +1443,7 @@ | ... | @@ -1443,7 +1443,7 @@ |
1443 | <nil key="highlightedColor"/> | 1443 | <nil key="highlightedColor"/> |
1444 | </label> | 1444 | </label> |
1445 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ"> | 1445 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ"> |
1446 | - <rect key="frame" x="83" y="795.5" width="248" height="40"/> | 1446 | + <rect key="frame" x="169" y="795.5" width="76" height="40"/> |
1447 | <constraints> | 1447 | <constraints> |
1448 | <constraint firstAttribute="height" constant="40" id="ccg-NP-FIH"/> | 1448 | <constraint firstAttribute="height" constant="40" id="ccg-NP-FIH"/> |
1449 | </constraints> | 1449 | </constraints> |
... | @@ -1457,7 +1457,7 @@ | ... | @@ -1457,7 +1457,7 @@ |
1457 | </connections> | 1457 | </connections> |
1458 | </button> | 1458 | </button> |
1459 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6"> | 1459 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6"> |
1460 | - <rect key="frame" x="83" y="855.5" width="248" height="40"/> | 1460 | + <rect key="frame" x="139.5" y="855.5" width="135" height="40"/> |
1461 | <constraints> | 1461 | <constraints> |
1462 | <constraint firstAttribute="height" constant="40" id="3pq-y5-f66"/> | 1462 | <constraint firstAttribute="height" constant="40" id="3pq-y5-f66"/> |
1463 | </constraints> | 1463 | </constraints> |
... | @@ -1505,7 +1505,6 @@ | ... | @@ -1505,7 +1505,6 @@ |
1505 | <constraint firstItem="Zw5-Wj-WD5" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.5" id="5nW-K9-uVa"/> | 1505 | <constraint firstItem="Zw5-Wj-WD5" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.5" id="5nW-K9-uVa"/> |
1506 | <constraint firstItem="Zw5-Wj-WD5" firstAttribute="top" secondItem="6rV-2m-QMZ" secondAttribute="bottom" constant="10" id="7VE-aB-ZD3"/> | 1506 | <constraint firstItem="Zw5-Wj-WD5" firstAttribute="top" secondItem="6rV-2m-QMZ" secondAttribute="bottom" constant="10" id="7VE-aB-ZD3"/> |
1507 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="8hP-dm-rWP"/> | 1507 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="8hP-dm-rWP"/> |
1508 | - <constraint firstItem="8cR-Rc-YMJ" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.6" id="8kM-Og-K54"/> | ||
1509 | <constraint firstItem="8UD-WL-JB7" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.5" id="9Gy-bi-NXO"/> | 1508 | <constraint firstItem="8UD-WL-JB7" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.5" id="9Gy-bi-NXO"/> |
1510 | <constraint firstItem="mri-Wl-spg" firstAttribute="top" secondItem="Xz4-EE-EzJ" secondAttribute="bottom" constant="25" id="9W8-fX-IzR"/> | 1509 | <constraint firstItem="mri-Wl-spg" firstAttribute="top" secondItem="Xz4-EE-EzJ" secondAttribute="bottom" constant="25" id="9W8-fX-IzR"/> |
1511 | <constraint firstItem="xjX-HZ-MpD" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="AIW-Kf-tkQ"/> | 1510 | <constraint firstItem="xjX-HZ-MpD" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="AIW-Kf-tkQ"/> |
... | @@ -1515,7 +1514,6 @@ | ... | @@ -1515,7 +1514,6 @@ |
1515 | <constraint firstItem="iiM-5P-m5s" firstAttribute="top" secondItem="1ec-eH-fkX" secondAttribute="top" id="H9I-TB-xig"/> | 1514 | <constraint firstItem="iiM-5P-m5s" firstAttribute="top" secondItem="1ec-eH-fkX" secondAttribute="top" id="H9I-TB-xig"/> |
1516 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="top" secondItem="UhC-Lj-tfN" secondAttribute="bottom" constant="35" id="I87-km-KEb"/> | 1515 | <constraint firstItem="8cR-Rc-YMJ" firstAttribute="top" secondItem="UhC-Lj-tfN" secondAttribute="bottom" constant="35" id="I87-km-KEb"/> |
1517 | <constraint firstItem="Zdf-1r-FdJ" firstAttribute="top" secondItem="Sg1-QU-FY1" secondAttribute="bottom" constant="10" id="KZi-Jl-Yyz"/> | 1516 | <constraint firstItem="Zdf-1r-FdJ" firstAttribute="top" secondItem="Sg1-QU-FY1" secondAttribute="bottom" constant="10" id="KZi-Jl-Yyz"/> |
1518 | - <constraint firstItem="W5f-1T-iW6" firstAttribute="width" secondItem="1ec-eH-fkX" secondAttribute="width" multiplier="0.6" id="LFp-LS-XsA"/> | ||
1519 | <constraint firstItem="UhC-Lj-tfN" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="MSg-iF-tt9"/> | 1517 | <constraint firstItem="UhC-Lj-tfN" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="MSg-iF-tt9"/> |
1520 | <constraint firstAttribute="trailing" secondItem="6rV-2m-QMZ" secondAttribute="trailing" constant="20" id="NGe-PV-pQl"/> | 1518 | <constraint firstAttribute="trailing" secondItem="6rV-2m-QMZ" secondAttribute="trailing" constant="20" id="NGe-PV-pQl"/> |
1521 | <constraint firstAttribute="trailing" secondItem="mri-Wl-spg" secondAttribute="trailing" constant="20" id="NmE-Pu-v1S"/> | 1519 | <constraint firstAttribute="trailing" secondItem="mri-Wl-spg" secondAttribute="trailing" constant="20" id="NmE-Pu-v1S"/> |
... | @@ -1711,7 +1709,7 @@ | ... | @@ -1711,7 +1709,7 @@ |
1711 | </constraints> | 1709 | </constraints> |
1712 | </view> | 1710 | </view> |
1713 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Bsb-ps-GWu"> | 1711 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Bsb-ps-GWu"> |
1714 | - <rect key="frame" x="83" y="594.5" width="248" height="40"/> | 1712 | + <rect key="frame" x="165" y="594.5" width="84" height="40"/> |
1715 | <constraints> | 1713 | <constraints> |
1716 | <constraint firstAttribute="height" constant="40" id="ge6-VF-hRu"/> | 1714 | <constraint firstAttribute="height" constant="40" id="ge6-VF-hRu"/> |
1717 | </constraints> | 1715 | </constraints> |
... | @@ -1766,7 +1764,6 @@ | ... | @@ -1766,7 +1764,6 @@ |
1766 | <constraint firstItem="uf8-tj-KCP" firstAttribute="leading" secondItem="9kx-ct-jms" secondAttribute="leading" constant="20" id="RnR-gU-5ge"/> | 1764 | <constraint firstItem="uf8-tj-KCP" firstAttribute="leading" secondItem="9kx-ct-jms" secondAttribute="leading" constant="20" id="RnR-gU-5ge"/> |
1767 | <constraint firstItem="flv-Ik-YC2" firstAttribute="leading" secondItem="9kx-ct-jms" secondAttribute="leading" constant="20" id="ahh-fc-oVh"/> | 1765 | <constraint firstItem="flv-Ik-YC2" firstAttribute="leading" secondItem="9kx-ct-jms" secondAttribute="leading" constant="20" id="ahh-fc-oVh"/> |
1768 | <constraint firstItem="flv-Ik-YC2" firstAttribute="top" secondItem="EV0-Fh-Tdo" secondAttribute="bottom" constant="50" id="bzc-9W-WMj"/> | 1766 | <constraint firstItem="flv-Ik-YC2" firstAttribute="top" secondItem="EV0-Fh-Tdo" secondAttribute="bottom" constant="50" id="bzc-9W-WMj"/> |
1769 | - <constraint firstItem="Bsb-ps-GWu" firstAttribute="width" secondItem="9kx-ct-jms" secondAttribute="width" multiplier="0.6" id="dVr-48-Bua"/> | ||
1770 | <constraint firstAttribute="trailing" secondItem="flv-Ik-YC2" secondAttribute="trailing" constant="20" id="lPH-Bs-rcr"/> | 1767 | <constraint firstAttribute="trailing" secondItem="flv-Ik-YC2" secondAttribute="trailing" constant="20" id="lPH-Bs-rcr"/> |
1771 | <constraint firstAttribute="trailing" secondItem="uf8-tj-KCP" secondAttribute="trailing" constant="20" id="ldF-78-GiQ"/> | 1768 | <constraint firstAttribute="trailing" secondItem="uf8-tj-KCP" secondAttribute="trailing" constant="20" id="ldF-78-GiQ"/> |
1772 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Bsb-ps-GWu" secondAttribute="bottom" constant="30" id="rIj-jg-3HJ"/> | 1769 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Bsb-ps-GWu" secondAttribute="bottom" constant="30" id="rIj-jg-3HJ"/> |
... | @@ -2033,7 +2030,7 @@ | ... | @@ -2033,7 +2030,7 @@ |
2033 | <nil key="highlightedColor"/> | 2030 | <nil key="highlightedColor"/> |
2034 | </label> | 2031 | </label> |
2035 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FCd-hv-dHg"> | 2032 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FCd-hv-dHg"> |
2036 | - <rect key="frame" x="83" y="440" width="248" height="50"/> | 2033 | + <rect key="frame" x="165" y="440" width="84" height="50"/> |
2037 | <constraints> | 2034 | <constraints> |
2038 | <constraint firstAttribute="height" constant="50" id="n2w-Tx-hhO"/> | 2035 | <constraint firstAttribute="height" constant="50" id="n2w-Tx-hhO"/> |
2039 | </constraints> | 2036 | </constraints> |
... | @@ -2093,7 +2090,6 @@ | ... | @@ -2093,7 +2090,6 @@ |
2093 | <constraint firstItem="3SX-fR-ph2" firstAttribute="top" secondItem="uTN-Qr-wBi" secondAttribute="top" id="oaX-KH-TEh"/> | 2090 | <constraint firstItem="3SX-fR-ph2" firstAttribute="top" secondItem="uTN-Qr-wBi" secondAttribute="top" id="oaX-KH-TEh"/> |
2094 | <constraint firstItem="isU-Qv-94G" firstAttribute="top" secondItem="3SX-fR-ph2" secondAttribute="bottom" constant="30" id="vQf-lC-GgG"/> | 2091 | <constraint firstItem="isU-Qv-94G" firstAttribute="top" secondItem="3SX-fR-ph2" secondAttribute="bottom" constant="30" id="vQf-lC-GgG"/> |
2095 | <constraint firstItem="FCd-hv-dHg" firstAttribute="top" secondItem="dSA-lM-N5v" secondAttribute="bottom" constant="100" id="x3c-xH-QFZ"/> | 2092 | <constraint firstItem="FCd-hv-dHg" firstAttribute="top" secondItem="dSA-lM-N5v" secondAttribute="bottom" constant="100" id="x3c-xH-QFZ"/> |
2096 | - <constraint firstItem="FCd-hv-dHg" firstAttribute="width" secondItem="uTN-Qr-wBi" secondAttribute="width" multiplier="0.6" id="xPb-wH-vOl"/> | ||
2097 | </constraints> | 2093 | </constraints> |
2098 | </view> | 2094 | </view> |
2099 | </subviews> | 2095 | </subviews> |
... | @@ -2519,7 +2515,7 @@ | ... | @@ -2519,7 +2515,7 @@ |
2519 | <nil key="highlightedColor"/> | 2515 | <nil key="highlightedColor"/> |
2520 | </label> | 2516 | </label> |
2521 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uDO-0Z-xFa"> | 2517 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uDO-0Z-xFa"> |
2522 | - <rect key="frame" x="83" y="445" width="248" height="40"/> | 2518 | + <rect key="frame" x="159.5" y="445" width="95" height="40"/> |
2523 | <constraints> | 2519 | <constraints> |
2524 | <constraint firstAttribute="height" constant="40" id="Mve-Wm-jeX"/> | 2520 | <constraint firstAttribute="height" constant="40" id="Mve-Wm-jeX"/> |
2525 | </constraints> | 2521 | </constraints> |
... | @@ -2580,7 +2576,6 @@ | ... | @@ -2580,7 +2576,6 @@ |
2580 | <constraint firstAttribute="trailing" secondItem="XJ0-lK-2fk" secondAttribute="trailing" constant="20" id="cco-tR-YlH"/> | 2576 | <constraint firstAttribute="trailing" secondItem="XJ0-lK-2fk" secondAttribute="trailing" constant="20" id="cco-tR-YlH"/> |
2581 | <constraint firstItem="7Bc-ly-ehN" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" id="jgD-2r-FeR"/> | 2577 | <constraint firstItem="7Bc-ly-ehN" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" id="jgD-2r-FeR"/> |
2582 | <constraint firstItem="ulI-Td-g6v" firstAttribute="width" secondItem="YmP-9y-EV0" secondAttribute="width" multiplier="0.5" id="lT3-Qx-qTs"/> | 2578 | <constraint firstItem="ulI-Td-g6v" firstAttribute="width" secondItem="YmP-9y-EV0" secondAttribute="width" multiplier="0.5" id="lT3-Qx-qTs"/> |
2583 | - <constraint firstItem="uDO-0Z-xFa" firstAttribute="width" secondItem="YmP-9y-EV0" secondAttribute="width" multiplier="0.6" id="mxO-XZ-O4t"/> | ||
2584 | <constraint firstItem="uDO-0Z-xFa" firstAttribute="top" secondItem="XJ0-lK-2fk" secondAttribute="bottom" constant="60" id="oRo-i8-goh"/> | 2579 | <constraint firstItem="uDO-0Z-xFa" firstAttribute="top" secondItem="XJ0-lK-2fk" secondAttribute="bottom" constant="60" id="oRo-i8-goh"/> |
2585 | <constraint firstItem="XJ0-lK-2fk" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" constant="20" id="olo-Ei-uC2"/> | 2580 | <constraint firstItem="XJ0-lK-2fk" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" constant="20" id="olo-Ei-uC2"/> |
2586 | <constraint firstItem="QlP-ct-u6O" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" id="pwh-Uf-942"/> | 2581 | <constraint firstItem="QlP-ct-u6O" firstAttribute="leading" secondItem="YmP-9y-EV0" secondAttribute="leading" id="pwh-Uf-942"/> |
... | @@ -2703,7 +2698,7 @@ | ... | @@ -2703,7 +2698,7 @@ |
2703 | <nil key="highlightedColor"/> | 2698 | <nil key="highlightedColor"/> |
2704 | </label> | 2699 | </label> |
2705 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qnn-bi-fLK"> | 2700 | <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qnn-bi-fLK"> |
2706 | - <rect key="frame" x="83" y="440" width="248" height="50"/> | 2701 | + <rect key="frame" x="165" y="440" width="84" height="50"/> |
2707 | <constraints> | 2702 | <constraints> |
2708 | <constraint firstAttribute="height" constant="50" id="aPk-mJ-VfN"/> | 2703 | <constraint firstAttribute="height" constant="50" id="aPk-mJ-VfN"/> |
2709 | </constraints> | 2704 | </constraints> |
... | @@ -2727,7 +2722,6 @@ | ... | @@ -2727,7 +2722,6 @@ |
2727 | <constraint firstAttribute="trailing" secondItem="mbx-MR-VPL" secondAttribute="trailing" constant="20" id="Tx9-8c-EZY"/> | 2722 | <constraint firstAttribute="trailing" secondItem="mbx-MR-VPL" secondAttribute="trailing" constant="20" id="Tx9-8c-EZY"/> |
2728 | <constraint firstItem="mbx-MR-VPL" firstAttribute="leading" secondItem="NHe-cF-AMf" secondAttribute="leading" constant="20" id="aL7-MN-hd4"/> | 2723 | <constraint firstItem="mbx-MR-VPL" firstAttribute="leading" secondItem="NHe-cF-AMf" secondAttribute="leading" constant="20" id="aL7-MN-hd4"/> |
2729 | <constraint firstItem="qnn-bi-fLK" firstAttribute="centerX" secondItem="NHe-cF-AMf" secondAttribute="centerX" id="hKA-X6-Nnh"/> | 2724 | <constraint firstItem="qnn-bi-fLK" firstAttribute="centerX" secondItem="NHe-cF-AMf" secondAttribute="centerX" id="hKA-X6-Nnh"/> |
2730 | - <constraint firstItem="qnn-bi-fLK" firstAttribute="width" secondItem="NHe-cF-AMf" secondAttribute="width" multiplier="0.6" id="lN0-41-F3G"/> | ||
2731 | <constraint firstAttribute="trailing" secondItem="8BE-qj-xn5" secondAttribute="trailing" constant="20" id="n53-MH-KG1"/> | 2725 | <constraint firstAttribute="trailing" secondItem="8BE-qj-xn5" secondAttribute="trailing" constant="20" id="n53-MH-KG1"/> |
2732 | <constraint firstItem="I4T-wN-u9w" firstAttribute="top" secondItem="NHe-cF-AMf" secondAttribute="top" id="osK-5K-XQJ"/> | 2726 | <constraint firstItem="I4T-wN-u9w" firstAttribute="top" secondItem="NHe-cF-AMf" secondAttribute="top" id="osK-5K-XQJ"/> |
2733 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="qnn-bi-fLK" secondAttribute="bottom" constant="30" id="uLb-eO-qwF"/> | 2727 | <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="qnn-bi-fLK" secondAttribute="bottom" constant="30" id="uLb-eO-qwF"/> |
... | @@ -2807,7 +2801,7 @@ | ... | @@ -2807,7 +2801,7 @@ |
2807 | <image name="dfy_logo_white" width="1611" height="395"/> | 2801 | <image name="dfy_logo_white" width="1611" height="395"/> |
2808 | <image name="ic_background_circle" width="214" height="134"/> | 2802 | <image name="ic_background_circle" width="214" height="134"/> |
2809 | <image name="ic_close_2" width="17" height="17.5"/> | 2803 | <image name="ic_close_2" width="17" height="17.5"/> |
2810 | - <image name="ic_down_dark" width="22" height="11.5"/> | 2804 | + <image name="ic_down_dark" width="24" height="24"/> |
2811 | <image name="new_icon" width="37" height="17"/> | 2805 | <image name="new_icon" width="37" height="17"/> |
2812 | <image name="wallet_coupons_2" width="64.5" height="70"/> | 2806 | <image name="wallet_coupons_2" width="64.5" height="70"/> |
2813 | <image name="wallet_dfy_earn" width="63" height="73"/> | 2807 | <image name="wallet_dfy_earn" width="63" height="73"/> | ... | ... |
... | @@ -99,6 +99,14 @@ import SwiftEventBus | ... | @@ -99,6 +99,14 @@ import SwiftEventBus |
99 | redeemButton.setTitleColor(.white, for: .normal) | 99 | redeemButton.setTitleColor(.white, for: .normal) |
100 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) | 100 | redeemButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) |
101 | redeemButton.layer.cornerRadius = 12.0 | 101 | redeemButton.layer.cornerRadius = 12.0 |
102 | + // Fix width for ipad | ||
103 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
104 | + // iPad | ||
105 | + redeemButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
106 | + } else { | ||
107 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
108 | + redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
109 | + } | ||
102 | 110 | ||
103 | } | 111 | } |
104 | 112 | ... | ... |
... | @@ -92,6 +92,14 @@ import SwiftEventBus | ... | @@ -92,6 +92,14 @@ import SwiftEventBus |
92 | activateButton.setTitleColor(.white, for: .normal) | 92 | activateButton.setTitleColor(.white, for: .normal) |
93 | activateButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) | 93 | activateButton.backgroundColor = UIColor(red: 0.47, green: 0.75, blue: 0.08, alpha: 1.00) |
94 | activateButton.layer.cornerRadius = 12.0 | 94 | activateButton.layer.cornerRadius = 12.0 |
95 | + // Fix width for ipad | ||
96 | + if UIDevice.current.userInterfaceIdiom == .pad { | ||
97 | + // iPad | ||
98 | + activateButton.widthAnchor.constraint(equalToConstant: 250).isActive = true | ||
99 | + } else { | ||
100 | + // not iPad (iPhone, mac, tv, carPlay, unspecified) | ||
101 | + activateButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true | ||
102 | + } | ||
95 | 103 | ||
96 | moreButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Regular", size: 16) | 104 | moreButton.titleLabel?.font = UIFont(name: "PFSquareSansPro-Regular", size: 16) |
97 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | 105 | // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) | ... | ... |
-
Please register or login to post a comment