[ios] Fixed leaks

This commit is contained in:
Alex Zolotarev 2012-09-01 16:39:15 +03:00 committed by Alex Zolotarev
parent 34188aebc8
commit 1aba6f8306
4 changed files with 6 additions and 5 deletions

View file

@ -11,7 +11,7 @@
{
m_balloon = view;
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(onSaveClicked)];
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(onSaveClicked)] autorelease];
self.title = NSLocalizedString(@"add_new_set", @"Add New Bookmark Set dialog title");
}
return self;

View file

@ -327,8 +327,9 @@ UITableViewCell * g_clickedCell = nil;
if (s.CountriesCount(index))
{
CountriesViewController * newController = [[CountriesViewController alloc] initWithIndex: index andHeader: cell.textLabel.text];
[self.navigationController pushViewController:newController animated:YES];
CountriesViewController * newController = [[CountriesViewController alloc] initWithIndex: index andHeader: cell.textLabel.text];
[self.navigationController pushViewController:newController animated:YES];
[newController release];
}
else
{

View file

@ -42,7 +42,7 @@
else
{
u = Settings::Foot;
PrefDelegate * d = [[PrefDelegate alloc] init];
PrefDelegate * d = [[[PrefDelegate alloc] init] autorelease];
d.m_controller = controller;
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"which_measurement_system", @"Choose measurement on first launch alert - title")
message:nil

View file

@ -23,7 +23,7 @@ int main(int argc, char * argv[])
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
Dummy * dummy = [[Dummy alloc] autorelease];
NSThread * thread = [[NSThread alloc] initWithTarget:dummy selector:@selector(dummyThread:) object:nil];
NSThread * thread = [[[NSThread alloc] initWithTarget:dummy selector:@selector(dummyThread:) object:nil] autorelease];
[thread start];
int retVal = UIApplicationMain(argc, argv, nil, nil);