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 want to know how i can declare and use a global NSMutable array
I know I can declare an array of string in XAML like this: <x:Array
In Oracle I can declare a reference cursor... TYPE t_spool IS REF CURSOR RETURN
In VB.Net, I can declare a variable in a function as Static, like this:
In Java, one can declare a variable parameterised by an unknown generic type, which
C# has syntax for declaring and using properties. For example, one can declare a
I've always wondered this - why can't you declare variables after a case label
Can I specify interfaces when I declare a member? After thinking about this question
I can't find a definitive answer. Since C# 2.0 you've been able to declare
Is there a way in Java to declare an enumeration whose values can be

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.