带参数的完成块
completion block with parameters
我在 nsobject class 中编写了一个带有完成块的方法,并从 uiviewcontroller 调用这个方法,它工作得很好,但是我如何在这个方法中传递一个 nsstring 参数,下面是我的代码片段。
-(void)testingFunction:(void(^)(NSMutableArray* result))handler{
NSMutableArray *dataArray = [[NSMutableArray alloc] init];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlstring]];
NSString *authStr = @"";
NSData *authData = [authStr dataUsingEncoding:NSUTF8StringEncoding];
NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
[request setValue:authValue forHTTPHeaderField:@"Authorization"];
//create the task
NSURLSessionDataTask* task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
[dataArray addObject:[[json objectForKey:@"query"] objectForKey:@"geosearch"]];
dispatch_async(dispatch_get_main_queue(), ^{
handler(dataArray) ;
});
}];
[task resume];
}
并从我的 uiviewcontroller 调用此方法
[[AllFunction sharedInstance] testingFunction:^(NSMutableArray* testResult){
[somearray addObject:testResult];
NSLog(@"Result was %@", somearray);
[self.tableView reloadData];
}];
如果你想传递一个NSString*
给方法:
-(void)testingFunction:(void(^)(NSMutableArray* result))handler andString:(NSString*) yourString;
或者如果你想传递一个 NSString*
到完成块:
-(void)testingFunction:(void(^)(NSMutableArray* result, NSString* yourString))handler;
编辑:
您可以这样调用方法:
NSString* yourString = @"Some Text";
testingFunction:^(NSMutableArray* result) {
//Do whatever you want here
} andString:yourString;
去读这个:http://www.tutorialspoint.com/objective_c/objective_c_functions.htm
编辑2:
正如 trojanfoe 所说,如果你的字符串应该是 url 你应该使用 NSURL
而不是 NSString
由于这个 "string" 实际上是一个 URL,因此传递一个 NSURL
实例:
-(void)testingFunction:(void(^)(NSMutableArray* result))handler
withURL:(NSURL *)url
{
NSMutableArray *dataArray = [[NSMutableArray alloc] init];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:url];
....
}
但是我不确定为什么你的问题标题为"completion block with parameters",因为这个问题涉及到一个普通的方法。
我在 nsobject class 中编写了一个带有完成块的方法,并从 uiviewcontroller 调用这个方法,它工作得很好,但是我如何在这个方法中传递一个 nsstring 参数,下面是我的代码片段。
-(void)testingFunction:(void(^)(NSMutableArray* result))handler{
NSMutableArray *dataArray = [[NSMutableArray alloc] init];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlstring]];
NSString *authStr = @"";
NSData *authData = [authStr dataUsingEncoding:NSUTF8StringEncoding];
NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
[request setValue:authValue forHTTPHeaderField:@"Authorization"];
//create the task
NSURLSessionDataTask* task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
[dataArray addObject:[[json objectForKey:@"query"] objectForKey:@"geosearch"]];
dispatch_async(dispatch_get_main_queue(), ^{
handler(dataArray) ;
});
}];
[task resume];
}
并从我的 uiviewcontroller 调用此方法
[[AllFunction sharedInstance] testingFunction:^(NSMutableArray* testResult){
[somearray addObject:testResult];
NSLog(@"Result was %@", somearray);
[self.tableView reloadData];
}];
如果你想传递一个NSString*
给方法:
-(void)testingFunction:(void(^)(NSMutableArray* result))handler andString:(NSString*) yourString;
或者如果你想传递一个 NSString*
到完成块:
-(void)testingFunction:(void(^)(NSMutableArray* result, NSString* yourString))handler;
编辑:
您可以这样调用方法:
NSString* yourString = @"Some Text";
testingFunction:^(NSMutableArray* result) {
//Do whatever you want here
} andString:yourString;
去读这个:http://www.tutorialspoint.com/objective_c/objective_c_functions.htm
编辑2:
正如 trojanfoe 所说,如果你的字符串应该是 url 你应该使用 NSURL
而不是 NSString
由于这个 "string" 实际上是一个 URL,因此传递一个 NSURL
实例:
-(void)testingFunction:(void(^)(NSMutableArray* result))handler
withURL:(NSURL *)url
{
NSMutableArray *dataArray = [[NSMutableArray alloc] init];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:url];
....
}
但是我不确定为什么你的问题标题为"completion block with parameters",因为这个问题涉及到一个普通的方法。