I have an array representing the rows of a UIPickerView:
var exerciseArray = ["Sitting","Walking","Bowling","Biking Slow","Biking Fast","Golf","SoftBall","BaseBall","Weight Training","Ice Skating","Tennis","Basketball","Jogging","Swimming","Soccer","Jump Rope"]
How can I assign different number values to each of the different rows in var exerciseArray
so I can access these assigned numbers later on for calculations?
I am new to programming, so please provide as much code as possible. Thank you!