how to make login page in iphone using HTTP Post method
- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil]; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. // appDelegate=(AppDelegate*)[[UIApplication sharedApplication]delegate]; // defaults=[NSUserDefaults standardUserDefaults]; usename_text.delegate=self; password_text.delegate=self; usename_text.layer.cornerRadius=3.0f; usename_text.layer.masksToBounds=YES; usename_text.layer.borderColor=[[UIColor whiteColor]CGColor]; ...