码迷,mamicode.com
首页 > 移动开发 > 详细

ios实现登陆验证

时间:2015-01-13 21:40:41      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:ios

我们可以使用第三框架AFNetworking,用它的post方法进行与服务器进行通信。若服务器返回的userId10则成功,返回的为11则表示用户名或者密码错误。

<span style="font-size:14px;">-(void)login:(id)sender{
      AFHTTPRequestOperationManager *manager=[AFHTTPRequestOperationManager manager];
    NSString *url=@"http://172.18.144.248:8080/upload_file_service/LoginServlet";
    manager.responseSerializer.acceptableContentTypes=[NSSet setWithObjects:@"text/html",nil];
     NSDictionary *namepwd=@{@"user":@"admin",@"pass":@"123"};
    [manager POST:url parameters:namepwd success:^(AFHTTPRequestOperation *operation, id responseObject) {
     NSLog(@"post-->%@",responseObject);
     NSDictionary *datare=[[NSDictionary alloc] init];
     datare=responseObject;   
     re=[datare objectForKey:@"userId"];
     appStatus *transvalue=[appStatus shareInstance];
     mainViewController *mainView=[self.storyboard instantiateViewControllerWithIdentifier:@"second"];
     mainView.delegate=self;
     transvalue.contextStr=__name.text;
     NSNumber *fre=[[NSNumber alloc]initWithInt:10];
     BOOL flag=[fre isEqualToNumber:re];
     if(flag){
              [self presentViewController:mainView animated:YES completion:nil];
        }
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"%@",@”用户名或者密码错误”);
    }];   
}</span>


ios实现登陆验证

标签:ios

原文地址:http://blog.csdn.net/ccq1029/article/details/42682493

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!