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.

NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.

learn more… | top users | synonyms

1
vote
1answer
35 views

Count of Checkins not matching Count of Places

I am looking to pull in my recent checkins, as well as find the place name. I currently ask for user_status permissions. I start off by requesting the data like this: -(void) makeCheckinRequest{ ...
1
vote
3answers
119 views

NSMutableArray does not hold added items after for loop

I try to make an Facebook Graph call and add some items to an array. The items are added in a for loop and the array looks fine. But after the for loop the items are vanished. I using xcode 4.5 with ...
1
vote
1answer
436 views

How to sort NSMutableArray key by date (Facebook Birthdays?)

Im trying to use NSSortDescriptor to sort the NSMutableArray *friends, key:birthday, by date, I'm getting null for all the birthdays in my NSLog, however the names are still logging. If I pull out ...
1
vote
0answers
77 views

Facebook API on iPhone: How to compare two sets of returned status updates

I am building an app where I need the status updates of the user. I am putting the status updates into an array, and displaying them to the user for him to select. I am able to gather the data, parse ...
0
votes
2answers
324 views

image to FaceBook news Feed

Does anyone know any public API or a solution to store screenshot images to some public server? Using the image link and add it to your FaceBook wall...
0
votes
1answer
112 views

Not able to access array with ids in another view controller in iphone

these is some code from my project.. for (index=0; index<[feed count]; index++) { //NSLog(@"........%@",[feed objectAtIndex:2]); NSString* forName=[feed objectAtIndex:index]; ...