I am writing an iPhone app that has a number of UITextFields that requires the user to input a bunch of data. I would like to have a simple \'delete\' facility that allows the u
You can just assign tags to each textfield in a sequence using tag property in interface builder and then get the textField like this
UITextField *txtf = (UITextField*)[self.view viewWithTag:aTagValue]; txtf.text = @""; or nil;