i've got a UIView, dragged of Object Library, inside of a UIViewcontroller created by StoryBoard.
Inside of this UIView, I put two Text Field to grab user name and password, and one button to log in.
How can I move only this View when the keyboard appears? I'm able to move the whole View Controller, but i can't find a solution to move only the View.
I just dragged one View of the Object Library, inside my Viewcontroller and created one Outlet in .h Viecontroller - @property (weak, nonatomic) IBOutlet UIView *contentView; and connected do this View, i'm in doubt too if I need to do something more to add the view to the project.
Thanks in advance!!