Create version with get information

This commit is contained in:
Quentin Millardet
2024-06-03 22:48:48 +02:00
parent b5e3b5e011
commit 53d5be6a02
8 changed files with 256 additions and 136 deletions

View File

@@ -29,13 +29,13 @@ class LightshowDownloadView: UITableViewController{
let isOk : Bool = model?.isOkFiles() ?? false;
(cell as! LightshowDownloadCell).LightshowName.text = model?.name
(cell as! LightshowDownloadCell).warningMessage.isHidden = isOk;
var alertText = ""
if (!isOk){
alertText = "(Le fichcier mp3 ou fseq n'a pas été reconnu)"
}
(cell as! LightshowDownloadCell).alertLabel.text = alertText
//(cell as! LightshowDownloadCell).LightshowName.text = model?.name
//(cell as! LightshowDownloadCell).warningMessage.isHidden = isOk;
//var alertText = ""
//if (!isOk){
// alertText = "(Le fichcier mp3 ou fseq n'a pas été reconnu)"
//}
//(cell as! LightshowDownloadCell).alertLabel.text = alertText
return cell!
}