选择器“receivedItemsJSON”没有已知的实例方法

问题描述 投票:0回答:1

我正在尝试构建一个测试 iOS 应用程序来解析来自 eBay API 的 JSON,但在将响应转发给委托时遇到了问题。我收到警告:

没有已知的选择器实例方法

我的

fetchingItemsFailedWithError
实现中的
receivedItemsJSON
ItemCommunicator
方法都出现错误。

XYZItemCommunicator.m:

#import "XYZItemCommunicator.h"
#import "XYZItemCommunicatorDelegate.h"
@implementation XYZItemCommunicator

- (void)searchItems
{
    NSString *urlAsString = [NSString stringWithFormat:@"http://svcs.ebay.com/services/search/FindingService/v1?SECURITY-APPNAME=**************&OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.12.0&RESPONSE-DATA-FORMAT=JSON&callback=_cb_findItemsByKeywords&REST-PAYLOAD&sortOrder=PricePlusShippingLowest&paginationInput.entriesPerPage=7&outputSelector=AspectHistogram&itemFilter(0).name=Condition&itemFilter(0).value(0)=New&itemFilter(1).name=MaxPrice&itemFilter(1).value=450.00&itemFilter(1).paramName=Currency&itemFilter(1).paramValue=USD&itemFilter(2).name=MinPrice&itemFilter(2).value=350.00&itemFilter(2).paramName=Currency&itemFilter(2).paramValue=USD&itemFilter(3).name=ListingType&itemFilter(3).value=FixedPrice&keywords=Moto+x+16gb+unlocked"];
    NSURL *url = [[NSURL alloc] initWithString:urlAsString];
    NSLog(@"%@", urlAsString);
    
    [NSURLConnection sendAsynchronousRequest:[[NSURLRequest alloc] initWithURL:url] queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
        
        if (error) {
            [self.delegate fetchingItemsFailedWithError:error];
        } else {
            [self.delegate receivedItemsJSON:data];
        }
    }];
}

@end

XYZItemCommunicator.h:

#import <Foundation/Foundation.h>

@protocol ItemCommunicatorDelegate;

@interface XYZItemCommunicator : NSObject
@property (weak, nonatomic) id<ItemCommunicatorDelegate> delegate;

@end

XYZItemCommunicatorDelegate.h:

#import <Foundation/Foundation.h>

@protocol XYZItemCommunicatorDelegate <NSObject>
- (void)receivedItemsJSON:(NSData *)objectNotation;
- (void)fetchingItemsFailedWithError:(NSError *)error;
@end
ios objective-c delegates
1个回答
1
投票

检查您的协议名称。你从

开始

ItemCommunicatorDelegate

并更改为

XYZItemCommunicatorDelegate

© www.soinside.com 2019 - 2024. All rights reserved.