Manos Chorianopoulos

possible fix for navbar bottom border line

...@@ -94,6 +94,8 @@ import SwiftEventBus ...@@ -94,6 +94,8 @@ import SwiftEventBus
94 94
95 swiftApi().logTrackersEvent("screen", "ContextualScreen") 95 swiftApi().logTrackersEvent("screen", "ContextualScreen")
96 96
97 + self.navigationController?.hideHairline()
98 +
97 } 99 }
98 100
99 101
......
...@@ -312,6 +312,7 @@ import AVFoundation ...@@ -312,6 +312,7 @@ import AVFoundation
312 312
313 swiftApi().logTrackersEvent("screen", "CouponScreen") 313 swiftApi().logTrackersEvent("screen", "CouponScreen")
314 314
315 + self.navigationController?.hideHairline()
315 } 316 }
316 317
317 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { 318 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool {
......
...@@ -143,6 +143,7 @@ import SwiftEventBus ...@@ -143,6 +143,7 @@ import SwiftEventBus
143 143
144 swiftApi().logTrackersEvent("screen", "CouponsetScreen") 144 swiftApi().logTrackersEvent("screen", "CouponsetScreen")
145 145
146 + self.navigationController?.hideHairline()
146 } 147 }
147 148
148 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { 149 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool {
......
...@@ -44,6 +44,7 @@ import SwiftEventBus ...@@ -44,6 +44,7 @@ import SwiftEventBus
44 self.coupons = swiftApi().getCouponList() 44 self.coupons = swiftApi().getCouponList()
45 self.tableView.reloadData() 45 self.tableView.reloadData()
46 46
47 + self.navigationController?.hideHairline()
47 } 48 }
48 49
49 50
......
...@@ -98,6 +98,8 @@ import SwiftEventBus ...@@ -98,6 +98,8 @@ import SwiftEventBus
98 self.refreshData() 98 self.refreshData()
99 99
100 self.startTimer() 100 self.startTimer()
101 +
102 + self.navigationController?.hideHairline()
101 } 103 }
102 104
103 public override func viewWillDisappear(_ animated: Bool) { 105 public override func viewWillDisappear(_ animated: Bool) {
......
...@@ -67,6 +67,8 @@ import SwiftEventBus ...@@ -67,6 +67,8 @@ import SwiftEventBus
67 swiftApi().logTrackersEvent("screen", "LoyaltyHistoryScreen") 67 swiftApi().logTrackersEvent("screen", "LoyaltyHistoryScreen")
68 68
69 self.startTimer() 69 self.startTimer()
70 +
71 + self.navigationController?.hideHairline()
70 } 72 }
71 73
72 public override func viewWillDisappear(_ animated: Bool) { 74 public override func viewWillDisappear(_ animated: Bool) {
......
...@@ -89,6 +89,8 @@ import SwiftEventBus ...@@ -89,6 +89,8 @@ import SwiftEventBus
89 self.refreshData() 89 self.refreshData()
90 90
91 self.startTimer() 91 self.startTimer()
92 +
93 + self.navigationController?.hideHairline()
92 } 94 }
93 95
94 public override func viewWillDisappear(_ animated: Bool) { 96 public override func viewWillDisappear(_ animated: Bool) {
......
...@@ -108,6 +108,7 @@ import MapKit ...@@ -108,6 +108,7 @@ import MapKit
108 108
109 swiftApi().logTrackersEvent("screen", "ShopsScreen") 109 swiftApi().logTrackersEvent("screen", "ShopsScreen")
110 110
111 + self.navigationController?.hideHairline()
111 } 112 }
112 113
113 // mvp 114 // mvp
......
...@@ -68,6 +68,8 @@ import SwiftEventBus ...@@ -68,6 +68,8 @@ import SwiftEventBus
68 swiftApi().logTrackersEvent("screen", "LoyaltyHistoryScreen") 68 swiftApi().logTrackersEvent("screen", "LoyaltyHistoryScreen")
69 69
70 self.startTimer() 70 self.startTimer()
71 +
72 + self.navigationController?.hideHairline()
71 } 73 }
72 74
73 public override func viewWillDisappear(_ animated: Bool) { 75 public override func viewWillDisappear(_ animated: Bool) {
......
...@@ -122,6 +122,7 @@ import SwiftEventBus ...@@ -122,6 +122,7 @@ import SwiftEventBus
122 122
123 swiftApi().logTrackersEvent("screen", "CouponShareScreen") 123 swiftApi().logTrackersEvent("screen", "CouponShareScreen")
124 124
125 + self.navigationController?.hideHairline()
125 } 126 }
126 127
127 deinit { 128 deinit {
......
...@@ -345,6 +345,7 @@ extension UITableView { ...@@ -345,6 +345,7 @@ extension UITableView {
345 345
346 swiftApi().logTrackersEvent("screen", "UnifiedCouponScreen") 346 swiftApi().logTrackersEvent("screen", "UnifiedCouponScreen")
347 347
348 + self.navigationController?.hideHairline()
348 } 349 }
349 350
350 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { 351 public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool {
......
...@@ -426,6 +426,7 @@ import SwiftEventBus ...@@ -426,6 +426,7 @@ import SwiftEventBus
426 swiftApi().logTrackersEvent("screen", "LoyaltyWalletScreen") 426 swiftApi().logTrackersEvent("screen", "LoyaltyWalletScreen")
427 427
428 // addNavShadow() 428 // addNavShadow()
429 + self.navigationController?.hideHairline()
429 430
430 let userTag = swiftApi().getUserTag() 431 let userTag = swiftApi().getUserTag()
431 if (questionnaireButton.currentTitle != userTag) { 432 if (questionnaireButton.currentTitle != userTag) {
......