Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8079391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:05:11+00:00 2026-06-05T16:05:11+00:00

I have a variable set for my AppDelegate which stores the current URL that

  • 0

I have a variable set for my AppDelegate which stores the current URL that has been clicked on in a UIWebView. This variable is set in the shouldStartLoadWithRequest function, as below:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {

    NSString *val = [request.URL absoluteString];

    currentURL = val;
    return YES;
}

The problem is that later in the application, accessing currentURL causes a EXC_BAD_ACCESS error because the NSString has been destroyed. However, if I add a ‘retain’ to when the variable is being assigned, like:

NSString *val = [[request.URL absoluteString] retain];

Then this means that every time a page is viewed, a new string is retained which is never released, causing a memory leak. How can I later release all of these retained strings?

I am storing this value so that the page reloads when there is a problem loading the page.

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
    [ausWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:currentURL]]]
}

I’ll bet it’s something simple.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T16:05:12+00:00Added an answer on June 5, 2026 at 4:05 pm

    Assuming that currentURL retained property you should do:

    NSString *val = [request.URL absoluteString];
    [currentURL release];
    currentURL = [val retain];
    

    and in your dealloc

    [currentURL release];
    

    or when you synthesized you retained property you only have to do in your shouldStartLoadWithRequest (still need to dealloc of course):

    self.currentURL = [request.URL absoluteString];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a smarty template that has a variable set that is a custom
In Javascript, I have a variable that is set to a block of text
I have a variable, emailBody, which is set to a string stored in a
I'm using magnolia and I have this variable: ${def.parameters.subTemplate} I want to set the
I have installed a servlet (solr) that requires that I set the variable solr.solr.home
I have a variable set to retrieve the id of a specific element which
i have a variable like this: set file=c:\dir\foo\bar\file.txt how can i get just the
I have variable: String colorName = BLUE; I want to set this color to
I have 2 classes, ClassA and ClassB ClassA has one BOOL variable set to
I have a $time variable set some time in the future. In this format

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.