0

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

new GetData(this) {

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

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

在我的目标 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
4

1 回答 1

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);
}];
于 2013-10-07T12:12:24.137 回答