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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:19:50+00:00 2026-05-22T12:19:50+00:00

I have the following case. I import data from an xml feed and from

  • 0

I have the following case. I import data from an xml feed and from facebook graph api, in this case posts. I want to merge this data in a array and sort this on the included date data.

I have now the following:

[containerArray addObject: [NSMutableArray arrayWithObjects: created_time, message, picture, fbSource, nil ]
                    ];

This creates a 2-dimensional array, but i want to order all the entries on created_time.

How can i best solve this problem? Thnx in advance!!

  • 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-22T12:19:51+00:00Added an answer on May 22, 2026 at 12:19 pm

    Create a data class containing the necessary instance variables instead of the mutable array. Then you can use the various sort method of the NSArray class, for example sortedArrayUsingDescriptors.

    A sort could look like this:

    NSSortDescriptor *sortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"created_time" 
                                                                    ascending:YES] autorelease];    
    
    NSArray *sortedArray = [containerArray sortedArrayUsingDescriptors:[NSArray arrayWithObject:sortDescriptor]];
    
    [sortDescriptor release];
    

    EDIT

    To quote Mr. Fowler from his book Refactoring: Improving the Design of Existing Code.

    Replace Array with Object

    You have an array in which certain elements mean different things.

    Replace the array with an object that has a field for each element

    …

    Motivation

    Arrays are a common structure for organizing data. However, they should be used only to contain a collection of similar objects in somre order.

    That’s what we want to do here. Let’s create a simple Posts class. You can easily add your custom initializer which accepts the four values as parameters, or even a convenience class method to return an autoreleased object later on. This is just a basic skeleton:

    Post.h

    @interface Posts : NSObject 
    {
        NSDate *created_time; 
        NSString *message;
        UIImage *picture;
        id fbSource; // Don't know what type :)
    }
    
    @property (nonatomic, retain) NSDate *created_time;
    @property (nonatomic, copy) NSString *message;
    @property (nonatomic, retain) UIImage *picture;
    @property (nonatomic, retain) id fbSource;
    
    @end
    

    Post.m

    #import "Post.h"
    
    @implementation Post
    
    @synthesize created_time, message, picture, fbSource;
    
    #pragma mark -
    #pragma mark memory management
    
    - (void)dealloc 
    {
        [created_time release];
        [message release];
        [picture release];
        [fbSource release];
        [super dealloc];
    }
    
    #pragma mark -
    #pragma mark initialization
    
    - (id)init
    {
        self = [super init];
        if (self) {
            // do your initialization here
        }
        return self;
    }
    

    EDIT 2

    Adding a Post object to your array:

    Post *newPost = [[Post alloc] init];
    newPost.reated_time = [Date date];
    newPost.message = @"a message";
    newPost.picture = [UIImage imageNamed:@"mypic.jpg"];
    // newPost.fbSource = ???
    [containerArray addObject:newPost];
    
    [newPost release];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am cross-posting this from scala-user: I have the following: object XmlTest { import
I have the following case where I want to accept the following routs '/type/view/23'
I have the following snippet from my code: switch ($extention) { case gif: $src
I have the unfortunate task of having to import data from excel into a
We have written a number of SSIS packages that import data from CSV files
I can't figure this out. I have the following code: import java.util.ArrayList; import java.util.List;
I have to import data from an old schema to a new one, where
I have the following case: All boats have a boat type like shark ,
I have the following case where I get the result of UTF-8 encoded HTTP
I have the following use case , lot of code which was tightly coupled

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.