below you\'ll find my .h & .m files for my primary viewcontroller.
I have 3 questions.
1.) Because I have multiple uitextfields, do I have to set each with
try to use self.dancePlace.delegate = self; instead of dancePlace.delegate = self; to set the UITextFieldDelegate. Does that work?
self.dancePlace.delegate = self;
dancePlace.delegate = self;
Try the following:
[[self view] endEditing:YES]