我最近询问了来自 AFNetwirking GET 查询的 nil 值。 Here is the question
我有答案
+ (void)getRequestFromUrlNSString *)requestUrl withCompletion(void (^)(NSString *result))completion
{
NSString * completeRequestUrl = [NSString stringWithFormat"%@%@", BASE_URL, requestUrl];
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
[manager GET:completeRequestUrl parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSString *results = [NSString stringWithFormat"%@", responseObject];
if (completion)
completion(results);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSString *results = [NSString stringWithFormat"Error"];
if (completion)
completion(results);
}];
}
[YourClass getRequestFromUrl"http://www.example.com" withCompletion:^(NSString *results){
NSLog(@"Results: %@", results);
}
现在我有另一个问题:在 MyClass 中,我有一个名为 getAllPlaces 的方法。
+ (void) getAllPlaces {
NSString * placesUrl = [NSString stringWithFormat: @"/url"];
NSMutableArray *places = [[NSMutableArray alloc] init];
[RestfulActions getRequestFromUrl:cafesUrl withCompletion:^(id placesInJSONFormat) {
NSArray *results = placesInJSONFormat;
for (NSDictionary *tempPlaceDictionary in results) {
Place *place = [[Place alloc] init];
for (NSString *key in tempPlaceDictionary) {
if ([place respondsToSelector:NSSelectorFromString(key)]) {
[place setValue:[tempPlaceDictionary valueForKey:key] forKey:key];
}
}
[places addObject:place];
}
}];
它有效,但我想返回非空值(NSArray 位置)。现在它再次提出了关于异步任务的问题。我应该怎么办?
我想使用 NSArray *places = [MyClass getAllPlaces]
从另一个类访问
我希望得到一个正确的答案。谢谢,阿尔乔姆。
您不能从该 block 返回值,因为它是异步的,并且在其他任务正在进行时继续运行。
处理此问题的正确方法是从 block 中调用处理此数据的方法并将其传递给数组。
关于ios - AFNetworking 从异步任务 iOS 返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20070571/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |