我开始使用 iPhone 和 iPad 应用程序,但仍然不知道如何做一些事情。
我正在开发一个具有登录屏幕的应用程序。当我使用另一种应用程序语言进行开发时,我有一个名为的类WebService
,我在其中完成与 Web 服务通信并返回输出或布尔值的所有工作。
但是在Objective C
我不知道该怎么做。
这是我的代码:
视图控制器.m
- (IBAction)login:(id)sender {
/* Verify if username and password are correct */
Boolean loginCorrecto = [[WebService alloc] login:self.textFieldUsername.text password:self.textFieldPassword.text];
/* If login is correct, go to another view */
if (loginCorrecto) {
CupsViewController *cupsView = [self.storyboard instantiateViewControllerWithIdentifier:@"cupsViewController"];
[self.navigationController pushViewController:cupsView animated:YES];
}
/* If not, show an error message */
else {
}
}
网络服务.m
- (Boolean)login:(NSString *)username password:(NSString *)password
{
/* HTTP POST */
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [NSURL URLWithString:URL_CUPS]];
[request setHTTPMethod:@"POST"];
NSString *postString = [NSString stringWithFormat: @"username=%@&password=%@", username, password];
[request setValue:[NSString stringWithFormat:@"%d", [postString length]] forHTTPHeaderField:@"Content-length"];
[request setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)theData {
NSDictionary* jsonArray=[NSJSONSerialization
JSONObjectWithData:theData
options:0
error:nil];
//Get values of response of web service
status = [jsonArray objectForKey:@"status"];
message = [jsonArray objectForKey:@"message"];
if([status isEqualToString:@"Ok"]) {
id results = [jsonArray objectForKey:@"results"];
if(results != [NSNull null]) {
for(int r = 0; r < [results count]; r++) {
//Get more values
}
}
}
else {
//Show error
}
}
目标
所以我想要的是登录方法,如果等于“Ok” WebService.m
,则返回true 。status
但是当该方法完成时,状态仍然是nil
. 我需要做什么?有什么方法可以用我的课程或我必须参加的课程来做到这一点Http Post
吗ViewController.m
?