覆盖类实例的函数

时间:2013-10-07 11:38:34

标签: iphone ios objective-c

我正在开发一款iPhone应用程序,并希望能够从Android的Java中创建一个与此类似的方法:

new GetData(this) {

        @Override
        protected void onProgressUpdate(String... string) {
            ((LoginActivity) context).loginCheck(string[0]);
        }
    }.execute(data);

在这里,我为每个实例重写onProgressUpdate函数,以便能够以不同的方式为我的GetData的每个实例使用来自服务器的结果。

在我的Objective C代码中,我有以下代码:

GetData *myGetData = [GetData alloc];
[myGetData initWithValue:@"email=blabla&password=blabla&login=blabla"];

如何在此处覆盖我的类实例myGetData的某些函数?

在这种情况下,覆盖Obj C中的函数的普通方式似乎不起作用。

我希望能够在每个实例中覆盖didReceiveData:(NSData *)数据函数

这是我的GetData课程:

@implementation GetData
-(id) initWithValue: (NSString*) data{
self = [super init];
// Create the request.
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://myServer.php"]];
[request setHTTPMethod:@"POST"];
// NSString *content = @"uid=273&facebook=1&getUserNotifications=true";
[request setHTTPBody:[data dataUsingEncoding:NSUTF8StringEncoding]];

[self print];

// Create url connection and fire request
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
return self;
}


- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
// A response has been received, this is where we initialize the instance var you created
// so that we can append data to it in the didReceiveData method
// Furthermore, this method is called each time there is a redirect so reinitializing it
// also serves to clear it
NSLog(@"didReceiveResponse");
_responseData = [[NSMutableData alloc] init];
//NSLog(@"%@", _responseData);
}
 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
// Append the new data to the instance variable you declared
NSLog(@"didReceiveData");
[_responseData appendData:data];
NSString *strData = [[NSString alloc]initWithData:_responseData encoding:NSUTF8StringEncoding];
//NSLog(@"%@", strData);
}
- (NSCachedURLResponse *)connection:(NSURLConnection *)connection
              willCacheResponse:(NSCachedURLResponse*)cachedResponse {
// Return nil to indicate not necessary to store a cached response for this connection
NSLog(@"connectionwillCacheResponse");
return nil;
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
// The request is complete and data has been received
// You can parse the stuff in your instance variable now
NSLog(@"connectionDidFinishLoading");

}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
// The request has failed for some reason!
// Check the error var
NSLog(@"didFailWithError");
}
@end

1 个答案:

答案 0 :(得分:1)

考虑以下代码:

typedef void (^data_handler_t) (NSURLConnection*connection, NSData*data);

data_handler_t handler = ^(NSURLConnection*connection, NSData*data){
    NSLog(@"%@",data);
};

handler(nil,[NSData new]);

然后将connection:didReceiveData:定义为

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    handler(connection, data);
}

在构造函数中传递块:

@implementation GetData {
    data_handler_t _handler;
}

-(id) initWithHandler:(data_handler_t) handler {
    _handler = handler;
    // ...
}

并将其称为

GetData *getData = [[GetData alloc] initWithHandler:^(NSURLConnection*connection, NSData*data){
    NSLog(@"%@",data);
}];