I have a text box in my XIB named "txt" and a button named "next". Now on the click of next button I want to print values of myArray.
NSArray *myArray
myArray = [NSArray arrayWithObjects:@"1",@"3",@"5",@"45",@"67",nil];
can anyone help me with this.