Marino Faggiana 8 vuotta sitten
vanhempi
commit
13481fb674
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 6 0
      iOSClient/Main/CCMore.swift

+ 6 - 0
iOSClient/Main/CCMore.swift

@@ -112,7 +112,13 @@ class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
     func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
         
         let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
+
+        // change color selection
+        let selectionColor : UIView = UIView.init()
+        selectionColor.backgroundColor = Constant.GlobalConstants.k_Color_SelectBackgrond
+        cell.selectedBackgroundView = selectionColor
         
+        // data
         cell.imageIcon?.image = UIImage.init(named: self.itemsMenuImage[indexPath.section][indexPath.row])
         cell.labelText?.text = NSLocalizedString(self.itemsMenuLabelText[indexPath.section][indexPath.row], comment: "")