There is this hard problem I got to solve, and I'm banging my head for the past couple of days. So I have 2 arrays.
Here is the first one:
{
categories = (
{
id = "user/06617213952393255174/label/Main Folder";
label = "Main Folder";
}
);
firstitemmsec = 1297785485208;
htmlUrl = "http://awebslife.tumblr.com/";
id = "feed/http://awebslife.tumblr.com/rss";
sortid = D5DB1FE2;
title = "awebslife.tumblr.com/rss";
},
{
categories = (
{
id = "user/06617213952393255174/label/Main Folder";
label = "Main Folder";
}
);
firstitemmsec = 1344454207448;
htmlUrl = "http://awholelotofnothing.net";
id = "feed/http://awholelotofnothing.net/feed/";
sortid = 7098B8F7;
title = "awholelotofnothing.net/feed/";
},
As you can see 2 objects, dictionaries. In my real app they are much more objects, but this is just an example. The other array:
{
count = 4;
id = "feed/http://awebslife.tumblr.com/rss";
newestItemTimestampUsec = 1346087733278957;
},
So here is the actual problem. I'm trying to match the second array with the first and combine them, but as you can see the second array only have objects which count is > 0. In my case in the first array my second object's count is 0. So if I match them, after combining to one array, I am left with only one object, while the other one i can't figure out how to put something like count = 0 for it. Here is how I match them:
-(void)gotUnreadCount:(NSDictionary *)unreadCount
{
NSMutableArray *mutableArr = [NSMutableArray array];
for (NSDictionary *unreadCountDict in unreadCount) {
for (NSDictionary *feedDict in self.subcriptionsNC) {
NSMutableDictionary *feedDictMutable = [feedDict mutableCopy];
if ([[unreadCountDict objectForKey:@"id"] isEqualToString:[feedDict objectForKey:@"id"]]) {
[feedDictMutable setObject:[unreadCountDict objectForKey:@"count"] forKey:@"count"];
[mutableArr addObject:feedDictMutable];
}
}
}
}
self.subscriptionsNC is the first array, unreadCount is the second.
I am left with the first object from self.subscriptionsNC, which count is > 0. The other which count is equal to 0 is not added to my combined array, because it's not present in the second array. (which is just overwriting self.subscriptionsNC)
I want if an item from the first array have no count (note: count is not specified nowhere, except from the second array, which doesn't show count equal to 0) to assign a count of 0.
Thank you!