Note that there are some explanatory texts on larger screens.

plurals
  1. POEXC_BAD_ACCESS error when trying to create an object of a class in xcode
    text
    copied!<p>I am getting an EXC_BAD_ACCESS error when i am trying to create an instance of a method.</p> <pre><code>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: @"&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;" "&lt;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/\"&gt;\n" "&lt;soap:Body&gt;\n" "&lt;GetImage xmlns=\"http://tempuri.org/\"&gt;\n" "&lt;imageID&gt;f89df9ad-5a5d-4354-895f-356d8ce4ccfb&lt;/imageID&gt;\n" "&lt;/GetImage&gt;\n" "&lt;/soap:Body&gt;\n" "&lt;/soap:Envelope&gt;\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]; </code></pre> <p>}</p> <p>Initialiser code</p> <pre><code>- (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; } </code></pre> <p>I applied a break point over here and when i hit continue i get the exe_bad_access error.</p> <p>I am trying o create an object of an xmlparser class.</p> <p>been on this for hours now.. no success. Please help..</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload