forked from organicmaps/organicmaps
[ios] Fixed leaks
This commit is contained in:
parent
34188aebc8
commit
1aba6f8306
4 changed files with 6 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue