problem in hiding tabbarController in iphone sdk? - objective-c

I'm displaying a list employess when clicking on tabBarButton. I want to hide the tabBar when I click on the cell to dispaly details of the employ and I want to show tabBar when I come back to the list .
please anyone help me.
thanks in advance
laxmi

[ViewControllerToBePushed setHidesBottomBarWhenPushed:YES];

Related

How to make a menu like the following Image

Please help me with this. Is there any library for this? Thanks in advance
I want the method and ingredients buttons and it should be swipe able
I want the method and ingredients buttons and it should be swipe able
Try react-native-tab-view - https://github.com/satya164/react-native-tab-view
or
react-native-swipe-tabs - https://www.npmjs.com/package/react-native-swipe-tabs

How to make a safari style Yosemite add tab button

First of all, I am so sorry for my bad English.
Secondly I would like to ask you, how can I set a toolbar item ( custom view ) at the bottom right corner of the toolbar( like the add tab button in safari Yosemite ). I have already found the NSTitlebarAcessoryViewController Class and i have set with that my Custom Tab view. But I cannot find how to set my add tab button at the position I told you, when my tab view is hidden.
I must also tell you that I am a total newbie.
Thank you in advance for your time. :-)

Adding tooltip to UIbutton

Hey, am trying to figure out how to set up a button so that when the user clicks it a tooltip appears above it giving a brief description, similar to what happens when you click a pin in Google maps.
Does anyone have any ideas how to do this?
Thank
Hey, managed to get there in the end. What I wanted was a UIMenuItem and then just position it above my button by setting its frame

how to make dropdown box for iphone app

how can i add a dropdown box (html select tag) in my iPhone application?
I think you cannot have a drop down list in the iphone.Instead of that it has the UIActionSheet.If you have more options like greater than 8 the UIActionSheet will have its own scroll and alert looks like table and the view will get an awesome look.Thats the only option we have.If you anything or if i am wrong just let me know
Thanks
You can create a custom combo box control. I have done this in one of my projects. You can do something like this. Create a ViewControlle with tableView in it. Make it's frame smaller. Add it's view on the view where you want to display combo. On tap of a button that looks like down arrow display tableView with some animation starting frame should just below the combo button.Hope it helps. First try this then if still you are unable to do let me know.

problem in TextFields

I got a problem in textfields.Actually I have 4 textfields when I click on to the first textfield and i entered the text into it.If I click on to the next textfield with out clicking on to the Done button in the keyboard of the first textfield the view goes up and the text in the first textfield is erased.
To solve this problem I used [TextField2 setUserInteractionEnabled:NO];
to disable the textfield until the first textfield should completes.
But I heard that Disabling the User Interface is a wrong process and its not a good idea to use in Iphone Apps.
So I got an Idea when we are typing the text into the textfield itself the text in the textfield should be saved.
Hey guys please help me how to get this.
Any one's help will be appreciated.
Thank you,
Monish Kumar.
Are your text fields inside a UITableView? If so, make sure you don't reuse cells or reload data.