Не могу понять в чем дело - если indicatorUnitPressed = 0, то при нажатии кнопки, текст меняется без проблем, но если indicatorUnitPressed равен числу от 1 до 7 то, при первом нажатии кнопки, текст не меняется, а при втором меняется.
var indicatorUnitPressed = 0 // Меняется от 0 до 7 в зависимости от того какую кнопку нажали
var switchPressed = 0 // по умолчанию
@IBAction func switchButtonPressed(_ sender: UIButton)
{
if switchPressed != 1
{
switch indicatorUnitPressed
{
case 0:
infoLabel.text = “Fº to Cº”
print("(indicatorUnitPressed)")
case 1:
infoLabel.text = “Km to Ml”
print("(indicatorUnitPressed)")
case 2:
infoLabel.text = “cm to in”
print("(indicatorUnitPressed)")
case 3:
infoLabel.text = “cm to ft”
case 4:
infoLabel.text = “m2 to sq.ft”
case 5:
infoLabel.text = “Litr to Gal”
case 6:
infoLabel.text = “Litr to Oz”
case 7:
infoLabel.text = “Kg to Pound”
default:
break
}
switchPressed = 1
}
else
{
print("(switchPressed)")
switch indicatorUnitPressed
{
case 0:
infoLabel.text = “Cº to Fº”
print("(indicatorUnitPressed)")
case 1:
infoLabel.text = “Ml to Km”
print("(indicatorUnitPressed)")
case 2:
infoLabel.text = “in to cm”
case 3:
infoLabel.text = “ft to cm”
case 4:
infoLabel.text = “sq.ft to m2”
case 5:
infoLabel.text = “Gal to Litr”
case 6:
infoLabel.text = “Oz to Litr”
case 7:
infoLabel.text = “Pound to Kg”
default:
break
}
switchPressed = 0
}
}
Полный файл тут
https://www.dropbox.com/s/fxa8ly6j5lxvpuq/MilesVie...