Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

UITextField not working inside a UITabBarController with IOS5

Are there any restrictions on a UITextField when placed inside a tabview which not the main interface. In other words

Working fine scenario 1. A tab based application, with one of the view having a uitextfield. 2. The tabview is the main interface for the application.

This works fine without any glitches

Not-working so fine scenario. 1. A tab based application, but the tab view is not the mainview. 2. There is another view "MainWindow.xib" with some intro animation, which then calls and shows the tabview. 3. UITextfield in such tabviews does'nt seem to work - especially in IOS5. Both methods work fine till IOS 4.3 4. The textfield is visible, but tapping it does not show any keyboard, if i call becomefirstresponder via code, the keyboard is shown but is not responsive.

Any suggestions

The code is pretty standard

in the AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

tabViewController = [[tabView alloc] initWithNibName:@\"tabView\" bundle:nil];
[self.window addSubview:tabViewController.view];
//self.window.rootViewController=tabViewController
[self.window makeKeyAndVisible];
return YES;
}


tabViewController has a ProfileViewController with a simple textfield.
The textfield works fine if i do this

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

tabViewController = [[tabView alloc] initWithNibName:@\"tabView\" bundle:nil];
profileView=[[Profile alloc] initWithNibName:@\"Profile\" bundle:nil];
//calling the view directly without using a tab view
[self.window addSubview:profileView.view];
[self.window makeKeyAndVisible];
return YES;
}


Is there something else that needs to be done for IOS5 when the tab view is not the main interface? I have been cracking my head at this for a few days, all my apps with a uitextfield inside a tabview are not usable in ios5. Any help is highly appreciated

Uploaded the project file TestKeyBoardWithTab.zip - XCode 4.2 on Lion

It is a simple project with two options, Creating a tabbarcontroller from the delegate itself, and i also have a view(tabView) with a tabbarcontroller. There are 2 views for the tabbar FirstViewController & SecondViewController. In the appdelegate.m if using method 1(create tabbarcontroller inside appdelegate, all is well). If i choose to add a subview of tabView, the uitextfield does not work. I have not really handled the releasing of objects, since this is test project and it is only for proof of concept.

Thanks
Sign In or Register to comment.