我最近询问过AFNetwirking GET查询的nil值。 Here is the question
我有一个答案
+ (void)getRequestFromUrl:(NSString *)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]
从另一个班级访问
我希望得到一个正确的答案。 Thx,Artem。
答案 0 :(得分:1)
您无法从该块返回值,因为它是异步的,并且在其他任务进行时继续运行。
处理此问题的正确方法是从块中调用处理此数据的方法并将其传递给数组。
答案 1 :(得分:0)
你应该尝试实现这样的方法:
+ (void) getTimeline:(NSString*)val success:(void (^)(id))success failure:(void (^)(NSError *))failure;
并像这样使用它:
[MyClass getTimeline:nil
success:^(id result) {} failure:^(NSError *error) {}
如果有的话,成功块将返回值!
还有什么? :)