Well i did figure put the problem with a little research so sorry for the inconvienence about asking the same question over and over , but i have a few more problems i encountered
heres the code i used to move the frame,
Code:
self.view.frame = CGRectMake(self.view.frame.origin.x, self.view.frame.origin.y - 210, self.view.frame.size.width, self.view.frame.size.height);
that took care of moving the textfields into the view
now to make the textfield at the top of the screen i removed the navigation bar at the top of the screen with
Code:
//i used this method to remove the bar[self.navigationController.navigationBar removeFromSuperview];
Code:
//and this method to remove the bar
[self.navigationController.navigationBar setHidden:YES];
but when the textField moves to where the navigation bar was , the textfield is still covered like the navigation bar is still there, so is there like a navigationBarTransparent funciton or something like that
also how would i write out in code to check if someone tapped a textField?