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.

Memory management is the act of managing computer memory. The essential requirement of memory management is to provide ways to dynamically allocate portions of memory to programs at their request, and freeing it for reuse when no longer needed. This is critical to the computer system.

learn more… | top users | synonyms (2)

2
votes
0answers
130 views

Error Message Using Facebook Deprecated Headers

I have an application in Xcode 4.5 which integrates Facebook. I am using ARC. The application uses native dialogs and therefore deprecated headers (ie Facebook.h). Apparently doing so leads to the ...
2
votes
2answers
316 views

Prevent IOS to shutdown an app when it app switch to facebook for login and permission request

I am really stuck on this problem and I need your help! I'm doing an ipad game with unity and the social network plugin from prime31. The situation: When you arrive to the end of level, the game ...
0
votes
1answer
214 views

Blackberry FB share prob: low memory

I am using Blackberry Facebook SDK (FacebookBlackBerrySDK-v0.8.25.jar) for facebook integration for my app. I am using the following code. ApplicationSettings as = new ApplicationSettings(NEXT_URL, ...
5
votes
2answers
1k views

Effect of 'myObj = [[[[MyClass alloc] init] autorelease] retain];'?

I've just downloaded the Facebook iOS SDK and I noticed that in the sample code that comes with the SDK whenever it creates an instance of the Facebook class it does it like this: _facebook = ...