Our process
How do we deliver ?
1. Prototyping
From paper sketches to wireframes. We bring in everything needed to build prototypes, which provides actual insights and help understand project better from the very beginning.
//
// VLQPaymentOptionCell.swift
// VLIQUE
//
// Copyright © 2018 Sispo. All rights reserved.
//
import UIKit
class VLQPaymentOptionCell: UITableViewCell {
@IBOutlet weak var optionNameLbl: UILabel!
@IBOutlet weak var optionPriceLbl: UILabel!
@IBOutlet weak var optionDescriptionLbl: UILabel!
@IBOutlet weak var separatorView: UIView!
var hasSeparator: Bool = true {
didSet {
separatorView.isHidden = !hasSeparator
}
}
func configure(option: VLQPaymentOption) {
optionNameLbl.text = option.name
optionPriceLbl.text = option.price.localized
optionDescriptionLbl.text = option.optionDesctiption
}
}
2. Developing
We follow best code practices to deliver clean and qualitative code, which significantly reduce later costs on development and maintanance.