I really need to loop through an array, then if array[iterator] != 0 {
I need to append the array[iterator] value, a Long to a nsstring
I am aware of
int G = 23456;
NSString *B = [NSString stringWithFormat:@"lolol %d", G];
but I dont know how to append to a string.
Thank You!