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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:03:54+00:00 2026-05-16T17:03:54+00:00

I want to declare a c array as an instance variable (e.g. int arr[256])

  • 0

I want to declare a c array as an instance variable (e.g. int arr[256]) in the interface block of a Cocoa object. I know that @property doesn’t support c arrays but how to manually add the getter and setter for the c array and where should I alloc and release it?

Any input will be appreciated. I really don’t want to use NSMutableArray for accessing int values.

  • 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-16T17:03:55+00:00Added an answer on May 16, 2026 at 5:03 pm

    You can use structs to wrap up an array. This is probably the one exception that allows arrays to be copied by assignment. The benefit of this approach is that there is no need to explicitly allocate or free memory.

    typedef struct
    {
        int data[256];
    } MyInts;
    
    
    @interface MyClass : NSObject
    {
        MyInts ints;
    }
    - (MyInts) ints;
    - (void) setInts:(MyInts) someInts;
    @end
    
    
    
    @implementation MyClass
    
    - (MyInts) ints
    {
        return ints;
    }
    
    - (void) setInts:(MyInts) someInts
    {
        ints = someInts;
    }
    
    @end
    
    
    int main(void)
    {
        MyInts ints = {{0}};
        ints.data[4] = 345;
        ints.data[5] = 123;
        ints.data[6] = 101;
    
        MyClass *someObj = [[MyClass alloc] init];
    
        [someObj setInts:ints]; // provide the ints to the object
        [someObj mutateTheInts]; // have object do something with them
        ints = [someObj ints]; // get them back
    
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know what is happening in memory when you declare: int **array;
i want to declare function in c# that accept an array an return the
I need to declare an array that consists of different variable types, mainly: char
i want to declare a parametrized method array or method list. This means that
I'm trying to call method from .jar But when I want to declare array
I want to declare an array of handel as the following code: using namespace
I can: declare @idOrder int set @idOrder = 21319 I want: declare @idOrder int
I want to declare three properties in my MSBuild file and overwrite one property
I want to declare static(or not static) variable inside Enum. I need this because
I want to declare a global array so I can use this in all

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.