I have some memory issue with my iPhone application and I have no clue what is happening. So, I observed that the memory usage of the application is rising continuously when going from an UIViewContr
Just wondering why I\'m getting the \'baseView\' undeclared error in dealloc when building this. CGRect baseFrame = CGRectMake(0, 0, 320, 480);
I have some pretty simple code where I am using a UINavigationController and adding a rootViewControll开发者_运维问答er.After some processing has occurred I want to pop off the current view controller
UIView *view; //1 UISegmentedControl *scopeBar; //2 NSMutableArray *array; //3 @property (nonatomic, retain) IBOutlet UIView *view;
I was confuse with memory management of removeFromSuperview. Here is my code: MySubView *tMySubView = [[MySubView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
I have been playing a bit with the memory in order to be a good memory citizen on the iPhone SDK. However I still struggle to understand the di开发者_StackOverflowfference between \"self.something\"
I understand that instance variables are released in dealloc (as shown below), but when exactly is it called? Are all instance variables released upon app close, or is there an accepted way for them t
I have an issue with a project of mine. I have a \"Menu\" UIViewController class and the dealloc function is never called.
I have a class that handle delegate methods for a table. I have used IB and dragged into the NIB a UITableViewDelegate that I changed to my class. I have also included a UITableView object in the NIB
I\'ve got quite a large project in which I change nibs frequently using code like this - level3 *screen = [[level3 alloc] initWithNibName:@\"level3\" bundle:nil];