Question

I have created an iPhone app and created it's AdHoc installation file (.ipa) using XCode 4.5, iOs6. And I have installed the app on my device successfully via iTunes.

The issue is, the app has one Login page and Sign Up page, which contains UITextFields. In the login page it created via IB but in sign up page it is through code and added as subview of UIScrollView. In both the pages everything is working fine. But after the adhoc installation, I opened the sign up page and clicked on any textfield, it is selected and I could enter the value. But after that, I am not able to select any of the textfields in the sign up page. I dismissed the sign up page, then the textfields in the login page also not working.

It is only happening for adhoc installed app. Is there any possible reason for this issue?

Please help.

Issue update

I tried to track the issue using Product>Profile>Automation. When I tested through it I got the same issue. At the same time it is working fine when it run from code. Does it help someone to give me some hints?

Was it helpful?

Solution

Did you properly check the delegate methods for UITextField? Ensure that it properly calls its delegate method at the end of editing. From your explanation, I understand that, you could select and enter values in the first text box. So, at the end of editing it should return YES.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top