【问题标题】:EXC_BAD_ACCESS error when trying to create an object of a class in xcode尝试在 xcode 中创建类的对象时出现 EXC_BAD_ACCESS 错误
【发布时间】:2011-01-01 02:17:57
【问题描述】:

我在尝试创建方法的实例时遇到 EXC_BAD_ACCESS 错误。

UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(40,38,240,203)];
DetailImageViewDataSource *detail=[[DetailImageViewDataSource alloc] init];//**error line**

@implementation DetailImageViewDataSource


@synthesize webdata,xmlParser,soapResults,newImage;
-(void) startParsing
{
    recordResults=FALSE;
    NSString *soapMessage=[NSString stringWithFormat:
                           @"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
                           "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
                           "<soap:Body>\n"
                           "<GetImage xmlns=\"http://tempuri.org/\">\n"
                           "<imageID>f89df9ad-5a5d-4354-895f-356d8ce4ccfb</imageID>\n"
                           "</GetImage>\n"
                           "</soap:Body>\n"
                           "</soap:Envelope>\n"];


//http://192.168.2.7/ImageWebService/Service1.asmx
//http://192.168.2.7/ThesisWebServicesNew1/Service.asmx
NSLog(soapMessage);
NSURL *url=[NSURL URLWithString:@"http://192.168.2.7/ThesisWebServicesNew1/Service.asmx"];
NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:url];
NSString *msgLength=[NSString stringWithFormat:@"%d",[soapMessage length]];

[theRequest addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue:@"http://tempuri.org/GetImage" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue:msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody:[soapMessage dataUsingEncoding:NSUTF8StringEncoding]];

NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

if(theConnection)
{
    webdata=[[NSMutableData data] retain];

    NSLog(@"got connected");
}

else
{
    NSLog(@"No Cnnection");
}

//[nameinput resignFirstResponder];

}

初始化代码

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {

        // Custom initialization
    }

    UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(40,38,240,203)];

    [img setImage:[UIImage imageNamed:@"LARCbackground.png"]];

    UITableView *tableView1=[[UITableView alloc] initWithFrame:CGRectMake(20,266,280,136) style:UITableViewStylePlain];
    [tableView1 setDelegate:self];
    [tableView1 setDataSource:self];
    [tableView1 setAlpha:0.75];
    [tableView1 setBackgroundColor:[UIColor clearColor]];

    [[self view] addSubview:tableView1];
    [tableView1 dealloc];
    [[self view] addSubview:img];
    [img dealloc];
    //[imageView setImage:];


    //[[self view] addSubview:imageView];
    return self;
}

我在这里应用了一个断点,当我点击继续时,我得到了 exe_bad_access 错误。

我正在尝试创建一个 xmlparser 类的对象。

已经做了几个小时了.. 没有成功。请帮忙..

【问题讨论】:

  • 请发布 DetailImageViewDataSource 初始化程序的代码。此外,您提到您正在尝试创建 xmlparser 的实例,但未显示该代码。
  • EXC_BAD_ACCESS 发生在哪里(哪一行)?
  • DetailImageViewDataSource *detail=[[DetailImageViewDataSource alloc] init];这是行
  • 按照我最初的要求,请发布该初始化程序。
  • 如果你直接打电话给dealloc,我认为你还有很多问题。

标签: iphone objective-c xcode


【解决方案1】:

这段代码有很多问题,其中任何一个都可能导致崩溃。很难在没有看到回溯的情况下分辨出哪个。

  1. 您的初始化程序错误:

    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
    
        // Custom initialization
        }
    
        UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(40,38,240,203)];
    
        ....
        return self;
    }
    

    在 if 和 return 之间不应有 任何 代码。如果对 super 的调用失败会怎样?在您的代码中,无论如何都会继续初始化实例。那肯定会坏的。

  2. 您对 NSLog() 的调用很危险:

    NSLog(soapMessage);
    

    如果soapMessage 恰好包含%@%s,那肯定会崩溃。

  3. 您正在直接调用-dealloc。两次。在将要释放的对象添加到视图层次结构后立即。

    [[self view] addSubview:tableView1];
    [tableView1 dealloc];
    [[self view] addSubview:img];
    [img dealloc];
    

    这肯定会导致崩溃,因为已释放的对象现在位于视图层次结构中。一旦你的应用尝试渲染任何东西,***BOOM****。

    您应该永远直接致电-dealloc。 (你的意思是-release,对吧?)

  4. 在评论中,您说崩溃在线DetailImageViewDataSource *detail=[[DetailImageViewDataSource alloc] init];。该行不会出现在粘贴的源代码中。同样,您所有的初始化逻辑都在-initWithNibName:bundle: 中。

    你确定你的对象被正确初始化了吗?

解决所有这些问题,然后查看您的崩溃是否仍然发生。如果是,请发布崩溃的堆栈跟踪。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2022-11-22
    • 1970-01-01
    • 2019-12-05
    • 2018-10-20
    • 2022-12-09
    • 2013-11-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多