Может кто-нибудь помочь мне исправить мой код здесь. Я пытаюсь сделать что-то простое, перебрать весь массив, в котором есть NSString, преобразовать их в NSIntegers и назначить их переменной NSInteger.
for (NSInteger *itemF in myNSArray) {
//WHERE "slotA" is an NSInteger and "itemF" is stored as an NSString and I wanna conver to NSInteger
//and store is in the var.
slotA=itemF;
}