project_files/HedgewarsMobile/Classes/SavedGamesViewController.m
changeset 11549 893722a2a1f9
parent 11306 7a9464f9e992
child 12872 00215a7ec5f5
equal deleted inserted replaced
11548:45982bda46cc 11549:893722a2a1f9
   142     UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 60)];
   142     UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 60)];
   143     footer.backgroundColor = [UIColor clearColor];
   143     footer.backgroundColor = [UIColor clearColor];
   144 
   144 
   145     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width*60/100, 60)];
   145     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width*60/100, 60)];
   146     label.center = CGPointMake(self.tableView.frame.size.width/2, 30);
   146     label.center = CGPointMake(self.tableView.frame.size.width/2, 30);
   147     label.textAlignment = UITextAlignmentCenter;
   147     label.textAlignment = NSTextAlignmentCenter;
   148     label.font = [UIFont italicSystemFontOfSize:16];
   148     label.font = [UIFont italicSystemFontOfSize:16];
   149     label.textColor = [UIColor lightGrayColor];
   149     label.textColor = [UIColor lightGrayColor];
   150     label.numberOfLines = 5;
   150     label.numberOfLines = 5;
   151     label.text = NSLocalizedString(@"Press to resume playing or swipe to delete the save file.",@"");
   151     label.text = NSLocalizedString(@"Press to resume playing or swipe to delete the save file.",@"");
   152 
   152