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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:37:30+00:00 2026-05-17T15:37:30+00:00

I can declare NSMutableArray or NSArray but I want to declare class array. Let

  • 0

I can declare NSMutableArray or NSArray but I want to declare class array. Let say user is a class so I can declare array as:

user* obj[10];

it is valid in Objective c, but I am not sure how I can set array capacity dynamically. Which we usually do with MutableArray as initWithCapacity:..

This is what I am doing with class:

user* objuser;
CustomOutput* output = [[CustomOutput alloc] init];
[objuser cutomSerialize:output];
NSMutableData* data = output.data;

But If I have array as:

NSMutableArray* aryUserObj;

I can’t call cutomSerialize method from arryUserObj.

I want to Serialize all the userObj at ones and get a single NSData 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-17T15:37:30+00:00Added an answer on May 17, 2026 at 3:37 pm

    The standard approach to serialize an array of objects is for you to define encodeWithCoder: and initWithCoder: in your User object:

    @interface User: NSObject {
     ....
    }
    -(void)encodeWithCoder:(NSCoder*)coder ;
    -(id)initWithCoder:(NSCoder*)coder;
    @end 
    

    What you currently have in CustomSerialize should be in these methods.

    Then, if you want to encode an object, you do

    User* user=... ;
    NSData* data=[NSKeyedArchiver archivedDataWithRootObject:user];
    

    and decode it:

    User* user=[NSKeyedUnarchiver unarchiveObjectWithData:data];
    

    If you have an array of objects,

    NSMutableArray* array=... ; // an array of users
    NSData* data=[NSKeyedArchiver archivedDataWithRootObject:array];
    

    and

    NSArray* array=[NSKeyedUnarchiver unarchiveObjectWithData:data];
    

    Iteration over array is done automatically.
    Note also that you don’t get the mutable array back, it’s an immutable array.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can declare private static member variables in a class, but what does it
how can declare a 2nd or multidimensional array without first size in c++? class
I want to declare a global array so I can use this in all
I want to know how i can declare and use a global NSMutable array
can someone tell me the difference in declare an mutable array with: NSMutableArray *array
I know that you can declare a C function outside of a class, but
I can: declare @idOrder int set @idOrder = 21319 I want: declare @idOrder int
How i can declare a global method in delphi prism using the __Global class?
In PHP 5 I can declare a const value to a class: class config
in C I can simply declare an array like this: int array[500]; to declare

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.