gpt4 book ai didi

objective-c - 使用未声明的标识符 Objective-C 代码

转载 作者:行者123 更新时间:2023-12-03 16:31:46 25 4
gpt4 key购买 nike

我是 Objective-C 编码新手,请耐心听我问这是否是一个简单的问题

我的头文件:

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *window;

@end

我的实现文件:

#import "AppDelegate.h"

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application

// Listing 2-1 Creating a connection using NSURLConnection

// Create the request.
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL
URLWithString:@"http://www.apple.com/"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];

// Create the NSMutableData to hold the received data.
// receivedData is an instance variable declared elsewhere.
receivedData = [NSMutableData dataWithCapacity: 0];

// create the connection with the request
// and start loading the data
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest
delegate:self];

if (!theConnection) {
// Release the receivedData object.
receivedData = nil;

// Inform the user that the connection failed.
}
}

@end

在实现文件中的receivedData处,它显示未声明的标识符。如果在 .h 文件中声明该变量,则表示无法在 @interface 和协议(protocol)中声明变量

最佳答案

正如您在评论中看到的:

// receivedData is an instance variable declared elsewhere.
receivedData = [NSMutableData dataWithCapacity: 0];

receivedData 应该在某处声明。试试这个:

NSMutableData *receivedData = [NSMutableData dataWithCapacity: 0];

关于objective-c - 使用未声明的标识符 Objective-C 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22221948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com