my array contains some strings..
array[0]=abs
array[1]=1234
array[2]=183
array[3]=1534
array[4]=pqr
array[5]=123
array[6]=134
array[7]=14
array[8]=aas
.
.
.
I placed this array in UITableView and and it shows output like this
abs
1234
183
1534
pqr
123
134
aas
.
.
.
then I created four labels programmatically in UITableView now I want to map
array[0] with first label
array[1] with second label
array[2] with third label
array[3] with four label
when array[4] comes it should map with first label and array[5] with second label and so on... how should i do this in objective c ?