I have a scroll view in which I have placed multiple UITextFields. When the text field is changed, it is sent to a selector and the function is carried out. Where I am having trouble is the "Tag".
So I can read the [sender tag], but I cannot read the text from within the UITextField at that tag.
NSString *holdString = ((UITextField*)[textChipCount viewWithTag:[sender tag]]).text; // says (null)
// Also tried (and many other random attempts)
NSString *holdString = ((UITextField*)[self.view viewWithTag:[sender tag]]).text;// Crashes
So I get that the text box selected tag = 3 (or which ever one is selected), but now I would like to convert the content from within the text field into a string. Can anyone help me?