提示用户登录ViewController
。当用户单击登录按钮时,将调用LoginService
的方法loginWithUsername:andWithPassword
。此方法使用NSURLConnection
从Web服务获取数据,并对登录凭据进行身份验证。它是NSURLConnection
委托(现在我知道有另一个NSURLConnection方法使用块,我只是喜欢这个,因为我理解这一点,至少哈哈)。
我已经设置了一个名为LoginServiceProtocol
的协议,其中一个名为loginResult
的委托方法接受一个NSDictionary参数loginData
。
调用NSURLConnection
委托方法connectionDidFinishLoading
时,我想调用方法loginResult
并将其loginData
参数设置为从网站提取的数据。
我的问题是,我似乎无法调用loginResult
方法。
要设置协议,我有LoginService.h的代码:
//To create a protocol
@protocol LoginServiceProtocol <NSObject>
-(void)loginResult:(NSDictionary*)loginData;
@end
//End of protocol creation
@interface LoginService : NSObject<NSURLConnectionDataDelegate>{
NSMutableData* _responseData; //Response data catches the data received from the web api
id<LoginServiceProtocol>delegate;
}
@property (nonatomic, assign) id <LoginServiceProtocol> delegate;
这是我在connectionDidFinishLoading NSURLConnection委托方法中的LoginService.m实现:
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSDictionary *loginDict = [NSJSONSerialization JSONObjectWithData:_responseData
options:NSJSONReadingMutableContainers
error:nil];
[self loginResult:loginDict];
if([self.delegate respondsToSelector:@selector(loginResult:)]){
[self.delegate loginResult:loginDict];
}
}
我写了[self loginResult:loginDict]
因为没有它,即使LoginService.m
中的委托方法的实现也没有被调用。没有它,该程序什么都不做。它不显示或执行任何操作,即使在我ViewController
LoginService
的代表中也是如此。我loginResult
中LoginService.m
的实施只是NSLog()
检查方法是否被调用。
我知道我错过了一件非常重要的事情,但我找不到它。我已经尝试了很长一段时间了。另外,我收到了这个警告:
Authosynthesized property 'delegate' will use synthesised instance variable '_delegate', not existing instance variable 'delegate'.
我在ViewController中使用了委托。这是我的ViewController.h:
#import <UIKit/UIKit.h>
#import "LoginService.h"
@interface ViewController : UIViewController<LoginServiceProtocol>{
}
@property (weak, nonatomic) IBOutlet UITextField *txtUsername;
@property (weak, nonatomic) IBOutlet UITextField *txtPassword;
@property (weak, nonatomic) IBOutlet UILabel *lblName;
- (IBAction)btnLogin:(id)sender;
- (IBAction)btnKeyResign:(id)sender;
- (void)loginResult:(NSDictionary *)loginData;
@end
我在ViewController.m中使用它就像这样,只是为了看它是否被调用:
- (void)loginResult:(NSDictionary *)loginData{
NSLog(@"Reached");
}
我在viewDidLoad中指定了它:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self.navigationController setNavigationBarHidden:YES];
LoginService* login = [[LoginService alloc]init];
login.delegate = self;
}
最近的LoginService.h
//Declaring custom delegate
@protocol LoginServiceProtocol <NSObject>
-(void)loginResult:(NSDictionary*)loginData;
@end
@interface LoginService : NSObject<NSURLConnectionDataDelegate>{
NSMutableData* _responseData;
id<LoginServiceProtocol>_delegate;
}
@property(nonatomic,strong)id<LoginServiceProtocol>delegate;
//End of custom delegate declaration
最近的viewDidLoad实现:
- (void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController setNavigationBarHidden:YES];
self.ls.delegate=self; //Where ls is a strong reference of LoginService declared in .h
}
答案 0 :(得分:1)
卸下:
id<LoginServiceProtocol>delegate;
从这里开始:
@interface LoginService : NSObject<NSURLConnectionDataDelegate>{
NSMutableData* _responseData; //Response data catches the data received from the web api
id<LoginServiceProtocol>delegate;
}
答案 1 :(得分:0)
您的控制器会创建一个LoginService
的实例,但不会取得它的所有权,因此该实例将在viewDidLoad
的末尾取消分配。