I have small view with a UITextField in it. I want to make the view hidden by default. when a button clicked it should show the view and the elements in main view below this sub view must be scrolled down. Any idea? I'm attaching the screenshots

|
I have small view with a UITextField in it. I want to make the view hidden by default. when a button clicked it should show the view and the elements in main view below this sub view must be scrolled down. Any idea? I'm attaching the screenshots
|
||||
|
|
|
Set the After this attach this action handler to the
This will show the textBar. If you want to show some other elements then you can add them in this method. Also you can make this method like a toggle. click once to show the elements, click again to hide them. |
|||
|
|
|
Inside the action u can also use
As for the scrolling use a UIScrollView something like
|
|||
|
|
|
//Alternate between hide and show when button is clicked
|
|||
|
|