Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Can you provide a most small piece of code, that demonstrates the issue? – Farcaller Aug 9 '12 at 20:26
I sure can. I hope that helps. – Tasik Aug 9 '12 at 20:35
Why are you using self.TextField in that method? The method passes in the textfield that invoked it in the textField parameter. – jsd Aug 9 '12 at 20:39
Also the line if ([self.TextField delegate] != nil) is redundant. [self dosomething] would not fire on the iPad even if the if statement was removed. – Tasik Aug 9 '12 at 20:40
@jsd Yes you're correct. It is useless sorry. – Tasik Aug 9 '12 at 20:42
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.