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 3600786
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:32:21+00:00 2026-05-18T20:32:21+00:00

I create a new View-based Application project and modify the didFinishLaunchingWithOptions: method as follow.

  • 0

I create a new “View-based Application” project and modify the didFinishLaunchingWithOptions: method as follow.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    // Override point for customization after application launch.
    // Add the view controller's view to the window and display.
    [self.window addSubview:viewController.view];
    [self.window makeKeyAndVisible];
    downloader = [[InternetIOProcess alloc] init]; 
    [downloader initWithServer:[NSURL URLWithString:@"http://www.test.com"] ];
    return YES;
}

InternetIOProcess is a NSObject with two variables, and a method:

@interface InternetIOProcess : NSObject {
    NSMutableArray* downloadingFile;
    NSURL* serverAddress;}
@property (nonatomic,retain) NSMutableArray* downloadingFile;
@property (nonatomic,retain) NSURL* serverAddress;
-(void) initWithServer:(NSURL*) server;

the implementation of InternetIOProcess is:

@implementation InternetIOProcess
@synthesize downloadingFile,serverAddress; //,serviceuploadingQueue,;
-(void) initWithServer:(NSURL*) server
{
    downloadingFile = [NSMutableArray array];
    serverAddress = server;
}

And then, I write a IBAction in UIViewController response to a button “touch up inside” event:

-(IBAction) test:(id)sender
{
    MyAppDelegate* d = (MyAppDelegate*)[UIApplication sharedApplication].delegate;
    InternetIOProcess* thedownloader = d.downloader;
    //value of "thedownloader" incorrect.
}

Try to access “thedownloader” here, its member “downloadingFile, serverAddress” both give random bad values!

Anybody know why can’t I access this object?

  • 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-05-18T20:32:21+00:00Added an answer on May 18, 2026 at 8:32 pm

    The problem lies here with you not retaining the array and the server and bad naming convention of init. It looks like your custom init method is not getting called.

    -(void) initWithServer:(NSURL*) server
    {
        downloadingFile = [NSMutableArray array];
        serverAddress = server;
    }
    

    Try making the following changes

    //InternetIOProcess.h add
    -(id) initWithServer:(NSURL*) server;
    
    //InternetIOProcess.m change
    -(id) initWithServer:(NSURL*) server
    {
        self = [super init];
        if(self != nil)
        {
            downloadingFile = [[NSMutableArray array] retain];
            serverAddress = [server retain];
        }
        return self;
    }
    
    //MyAppDelegate.m
    downloader = [[InternetIOProcess alloc] initWithServer:[NSURL URLWithString:@"http://www.test.com"]];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've created a new View-based Application in XCode. In the ViewController, the only code
I have noticed that when you create a new xcode project as a view
I create new Window-Based project in xCode and a subclass of UIViewController name Main
I create new ASP.NET web application that use SMTP to send message. The problem
I am attempting to create new membership users in an Ektron CMS400.NET-based website by
We have created a new List View Style that shows thumbnails from a picture
How to create new PCL file similar to existing MS doc. I have MS
So what's the best way to create new tables in a Sqlite database in
I'm using Visual Basic 9 (VS2008) I want to create new Tabs as and
After I renamed my PC, I couldn't create new paublications, for database replication in

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.