I have an iPhone application. It is not a universal application. (I do not a separate .xib files for the iPad).
Everything is running fine when I test the app on the iPhone. However when I test the app on my iPad none of my delegates work.
(These are the delegates I use; ADBannerViewDelegate, UIPickerViewDataSource, UIPickerViewDelegate, UITextFieldDelegate, UIScrollViewDelegate)
Interestingly enough if I goto my target summary page and change the 'iOS Application Target' from iPhone to iPad or Universal. My delegates now work on the iPad. But again I don't want a universal app. I just want it so my non-universal iPhone app at least runs on the iPad as an iPhone app.
I'm sure I'm missing something simple and obvious I just can't seem to figure out what it is.
Anyways thanks in advance.
Here is some code
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range
replacementString:(NSString *)string {
//{My Breakpoint is here}
[self dosomething];
}
So basically when running on the iPhone my breakpoint is hit and if it wasn't there my [self dosomething] function would fire. But when running on the iPad it is not. This is true of all my delegate related things.

self.TextFieldin that method? The method passes in the textfield that invoked it in thetextFieldparameter. – jsd Aug 9 '12 at 20:39