Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am parsing json data,and i store them into an NSMutableArray. For each data,parameters are as the following format,

{
    "id":"6",
    "username":"biju",
    "password":"biju123",
    "usertype":"2",
    "first_name":"biju",
    "last_name":null,
    "email":"b@b.com",
    "blocked":"N",
    "created":"2012-11-02 16:03:19",
    "image":"http:\/\/192.168.1.254\/eatthos\/assets\/upload\/users\/1351852399_thumb.jpg","thumb_image":"1351852399_thumb.jpg",
    "menu_image":"0",
    "thumb_menu_image":"0",
    "city":"njdfh",
    "favorite_food":"kafh",
    "favorite_restaurant":"kafdhj",
    "phone_number":"0",
    "description":"0",
    "token":"Dwx0DG",
    "fb_unique_id":null,
    "account_type":"normal",
    "twitter_id":null,
    "followers":"5",
    "follow":"N"
}

i am parsing about 100K of data,what will be the size(memory) of that array ? Will it be a memory issue if i use it for an iphone app ?

share|improve this question
3  
increase your accept rate – Nitin Gohel Nov 7 '12 at 5:29
This is also a useful link stackoverflow.com/questions/1515538/… – Ramz Nov 7 '12 at 5:30

4 Answers

up vote 4 down vote accepted

The array itself won't take that much space -- it's just a bunch of pointers. An array with tens of thousands of items can still only be a few dozen kilobytes. The space taken by the objects that the array contains is likely to be much more significant. But that is something only you can see -- there is no "size of an object in an array." It's like asking "How big is a ball?" It is possible that your data's space needs are problematic, and it's equally possible that there's no problem at all. As with many programming questions, I think the best answer is to try and see for yourself.

share|improve this answer
Thank u chuck... i also belive it doesnt take so much of memory. As u said to try n see by myself is not possible in my case...its a Social Networking App and user's info are saved in server page(lakhs of data will be stored only after the product is launched),i am parsing those data and showing on a UITableView(know it wont be a memory issue in case of Table,but i was bit confused about my array) – Nithin MK Nov 7 '12 at 7:51

You can try to find out size of your array with the following piece of code :

size_t total;
 id obj;
 for (obj in array)
 {
    total += class_getInstanceSize([obj class]);
 }

 NSLog(@"Array size : %ld",total); //This will return you size in bytes

you need to do : #import <objc/runtime.h>

share|improve this answer

i found solution about your quiestion from this link Maximum amount of objects in NSArray and Size of the NSMutable Array in objective C?

The NSArray initWithCapacity method, takes an unsigned int as an argument. So whatever the maximum value of an unsigned int is on your platform may be the theoretical limit. However the actual limit is more likely to depend on the amount of memory you have available.

you can difine you NSMutableArray size is :-

NSMutableArray* anArray = [NSMutableArray arrayWithSize: 100000];

share|improve this answer
Thats ok..But i cannot define a size,because i am parsing unknown number of datas. My questions is:will it be a memory issue if i parse plenty of datas,and the parameters are as i mentioned in question – Nithin MK Nov 7 '12 at 5:34
it doesn't mean that you must be define size as for my above answer it depend on the amount of memory you have available. – Nitin Gohel Nov 7 '12 at 5:37
NSMutableArray can use up as much space as you have free. – Ramz Nov 7 '12 at 5:42
yes..it depends about the phone memory, Thats why i particularly asked what will be an approximate memory size of 1 lakh of data ?? – Nithin MK Nov 7 '12 at 5:43
please see this stackoverflow.com/questions/10016654/… – Ramz Nov 7 '12 at 6:01
show 1 more comment

Why can not you download 100 records each time like an apps then are in app store So, That the app will load quicker that before If u want to see the flow of the memory you can go through this link http://mobileorchard.com/find-iphone-memory-leaks-a-leaks-tool-tutorial/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.