When i am analyzing it getting these messages:
Method returns an Objective-C object with a +1 retain count for the below statement
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
Object leaked alocated object is not refrenced later in this execution path and has a retain count of + 1
[self.view setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
Anyone knows how to fix these messages.
Thanks for help.
self.view is a @property that is retained when it is set. You will need to release it.
Try:
or