Question for code monkey?
iDeveloperz
Member Posts: 1,169
speaking for all game salad developers we can not see the actual code for our games.
I was just wondering are all of our actors and rules released every time a view is closed?
I was just wondering are all of our actors and rules released every time a view is closed?
Comments
- (void)viewDidUnload {
[view release];
[Button release];
[Textfield release];
}
(Basically you have to release all of the Outlets & Actions).
This helps preventing memory leaks.