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

  • SEARCH
  • Home
  • 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 6219025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:42:32+00:00 2026-05-24T07:42:32+00:00

Problem I am trying to create an object in Objective-C. I know how to

  • 0

Problem

I am trying to create an object in Objective-C. I know how to do it but I have a few questions regarding the methods in the implementation file.

The Object:

@interface Program : NSObject {
    NSString *sid;
    NSString *le;
    NSString *sd;
    NSString *pid;
    NSString *n;
    NSString *d;
    NSString *url;
}

@property (nonatomic, retain) NSString *sid;
@property (nonatomic, retain) NSString *le;
@property (nonatomic, retain) NSString *sd;
@property (nonatomic, retain) NSString *pid;
@property (nonatomic, retain) NSString *n;
@property (nonatomic, retain) NSString *d;
@property (nonatomic, retain) NSString *url;

@end

Question

I should only implement dealloc and init.. Am I right on this?

Furthermore, I have no special initializations, so should I keep the default init method as follows?

- (id)init
{
    self = [super init];
    if (self) {
        // Initialization code here.
    }

    return self;
}
  • 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-24T07:42:33+00:00Added an answer on May 24, 2026 at 7:42 am

    You need to synthesize the properties and if you don’t need any custom initialization then you can keep the init method as it is. In fact there is no need to implement init here. But in dealloc you need to release the strings.

    @implementation Program
    
    @synthesize sid;
    // ... synthesize others
    
    - (void)dealloc {
        [sid release];
        // ... release others
    
        [super dealloc];
    }
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem with my WPF program. I'm trying to create an object
I'm having a problem using the java.text.MessageFormat object. I'm trying to create SQL insert
I'm trying to create an application in interface builder, and I'm having a problem.
I'm trying to create objects from a key/value list. My Problem is, that Object
I have a VB6 dll that is trying to create a COM object using
I'm trying create an immutable object and initialise it from xml config file in
I have a problem when trying to save an inherited object using TemplateHibernate: Let's
we have a problem when trying to create events for a custom control in
I'm trying to create an object in a function, but I am running into
Having a problem trying to create a function, as part of a BizTalk helper

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.