Showing
5 changed files
with
7 additions
and
7 deletions
| ... | @@ -35,7 +35,7 @@ import AVFoundation | ... | @@ -35,7 +35,7 @@ import AVFoundation |
| 35 | 35 | ||
| 36 | public var coupon: swiftApi.CouponItemModel? | 36 | public var coupon: swiftApi.CouponItemModel? |
| 37 | 37 | ||
| 38 | - override func viewDidLoad() { | 38 | + public override func viewDidLoad() { |
| 39 | super.viewDidLoad() | 39 | super.viewDidLoad() |
| 40 | 40 | ||
| 41 | // Do any additional setup after loading the view. | 41 | // Do any additional setup after loading the view. | ... | ... |
| ... | @@ -23,7 +23,7 @@ import UIKit | ... | @@ -23,7 +23,7 @@ import UIKit |
| 23 | 23 | ||
| 24 | var termsVisible: Bool = false; | 24 | var termsVisible: Bool = false; |
| 25 | 25 | ||
| 26 | - override func viewDidLoad() { | 26 | + public override func viewDidLoad() { |
| 27 | super.viewDidLoad() | 27 | super.viewDidLoad() |
| 28 | 28 | ||
| 29 | // Do any additional setup after loading the view. | 29 | // Do any additional setup after loading the view. | ... | ... |
| ... | @@ -18,7 +18,7 @@ import UIKit | ... | @@ -18,7 +18,7 @@ import UIKit |
| 18 | @IBOutlet weak var expirationLabel: UILabel! | 18 | @IBOutlet weak var expirationLabel: UILabel! |
| 19 | 19 | ||
| 20 | 20 | ||
| 21 | - override func awakeFromNib() { | 21 | + public override func awakeFromNib() { |
| 22 | super.awakeFromNib() | 22 | super.awakeFromNib() |
| 23 | // Initialization code | 23 | // Initialization code |
| 24 | 24 | ||
| ... | @@ -27,13 +27,13 @@ import UIKit | ... | @@ -27,13 +27,13 @@ import UIKit |
| 27 | borderView.addDashedBorderVertical(color: UIColor(red: 0.44, green: 0.44, blue: 0.44, alpha: 1.00), width: 1.0, height: 110.0) | 27 | borderView.addDashedBorderVertical(color: UIColor(red: 0.44, green: 0.44, blue: 0.44, alpha: 1.00), width: 1.0, height: 110.0) |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | - override func setSelected(_ selected: Bool, animated: Bool) { | 30 | + public override func setSelected(_ selected: Bool, animated: Bool) { |
| 31 | super.setSelected(selected, animated: animated) | 31 | super.setSelected(selected, animated: animated) |
| 32 | 32 | ||
| 33 | // Configure the view for the selected state | 33 | // Configure the view for the selected state |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | - override func layoutSubviews() { | 36 | + public override func layoutSubviews() { |
| 37 | super.layoutSubviews() | 37 | super.layoutSubviews() |
| 38 | //set the values for top,left,bottom,right margins | 38 | //set the values for top,left,bottom,right margins |
| 39 | let margins = UIEdgeInsets(top: 0, left: 0, bottom: 30, right: 0) | 39 | let margins = UIEdgeInsets(top: 0, left: 0, bottom: 30, right: 0) | ... | ... |
| ... | @@ -9,7 +9,7 @@ import UIKit | ... | @@ -9,7 +9,7 @@ import UIKit |
| 9 | 9 | ||
| 10 | @objc public class LoyaltyAnalysisViewController: UIViewController { | 10 | @objc public class LoyaltyAnalysisViewController: UIViewController { |
| 11 | 11 | ||
| 12 | - override func viewDidLoad() { | 12 | + public override func viewDidLoad() { |
| 13 | super.viewDidLoad() | 13 | super.viewDidLoad() |
| 14 | 14 | ||
| 15 | // Do any additional setup after loading the view. | 15 | // Do any additional setup after loading the view. | ... | ... |
| ... | @@ -9,7 +9,7 @@ import UIKit | ... | @@ -9,7 +9,7 @@ import UIKit |
| 9 | 9 | ||
| 10 | @objc public class StepsViewController: UIViewController { | 10 | @objc public class StepsViewController: UIViewController { |
| 11 | 11 | ||
| 12 | - override func viewDidLoad() { | 12 | + public override func viewDidLoad() { |
| 13 | super.viewDidLoad() | 13 | super.viewDidLoad() |
| 14 | 14 | ||
| 15 | // Do any additional setup after loading the view. | 15 | // Do any additional setup after loading the view. | ... | ... |
-
Please register or login to post a comment