2016-09-25 63 views
0

我有一个为iphone 4或4s构建的旧应用程序。 我想稍微改变它,并将其作为适用于包括iPad在内的所有设备的应用发布。 我已经调整了代码,所以现在它在所有设备上工作,但是当我在iPhone上运行它时,4s的应用会在顶部和底部切割。 问题是应用程序的用户界面是用代码编写的,根本不使用StoryBoard。 的UI代码:如何使iPhone 4应用适合所有iOS尺寸?

- (void)viewDidLoad { 
[super viewDidLoad]; 

self.screenHeight = [UIScreen mainScreen].bounds.size.height; 

UIImage *background = [UIImage imageNamed:@"bg"]; 

self.backgroundImageView = [[UIImageView alloc] initWithImage:background]; 
self.backgroundImageView.contentMode = UIViewContentModeScaleAspectFill; 
[self.view addSubview:self.backgroundImageView]; 

self.blurredImageView = [[UIImageView alloc] init]; 
self.blurredImageView.contentMode = UIViewContentModeScaleAspectFill; 
self.blurredImageView.alpha = 0; 
[self.blurredImageView setImageToBlur:background blurRadius:10 completionBlock:nil]; 
[self.view addSubview:self.blurredImageView]; 

self.tableView = [[UITableView alloc] init]; 
self.tableView.backgroundColor = [UIColor clearColor]; 
self.tableView.delegate = self; 
self.tableView.dataSource = self; 
self.tableView.separatorColor = [UIColor colorWithWhite:1 alpha:0.2]; 
self.tableView.pagingEnabled = YES; 
[self.view addSubview:self.tableView]; 

CGRect headerFrame = [UIScreen mainScreen].bounds; 
CGFloat inset = 20; 
CGFloat temperatureHeight = 110; 
CGFloat hiloHeight = 40; 
CGFloat iconHeight = 30; 
CGRect hiloFrame = CGRectMake(inset, headerFrame.size.height - hiloHeight, headerFrame.size.width - 2*inset, hiloHeight); 
CGRect temperatureFrame = CGRectMake(inset, headerFrame.size.height - temperatureHeight - hiloHeight, headerFrame.size.width - 2*inset, temperatureHeight); 
CGRect iconFrame = CGRectMake(inset, temperatureFrame.origin.y - iconHeight, iconHeight, iconHeight); 
CGRect conditionsFrame = iconFrame; 
// make the conditions text a little smaller than the view 
// and to the right of our icon 
conditionsFrame.size.width = self.view.bounds.size.width - 2*inset - iconHeight - 10; 
conditionsFrame.origin.x = iconFrame.origin.x + iconHeight + 10; 

UIView *header = [[UIView alloc] initWithFrame:headerFrame]; 
header.backgroundColor = [UIColor clearColor]; 
self.tableView.tableHeaderView = header; 

// bottom left 
UILabel *temperatureLabel = [[UILabel alloc] initWithFrame:temperatureFrame]; 
temperatureLabel.backgroundColor = [UIColor clearColor]; 
temperatureLabel.textColor = [UIColor whiteColor]; 
temperatureLabel.text = @"0°"; 
temperatureLabel.font = [UIFont fontWithName:@"HelveticaNeue-UltraLight" size:120]; 
[header addSubview:temperatureLabel]; 

// bottom left 
UILabel *hiloLabel = [[UILabel alloc] initWithFrame:hiloFrame]; 
hiloLabel.backgroundColor = [UIColor clearColor]; 
hiloLabel.textColor = [UIColor whiteColor]; 
hiloLabel.text = @"0°/0°"; 
hiloLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:28]; 
[header addSubview:hiloLabel]; 

// top 
UILabel *cityLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 20, self.view.bounds.size.width, 30)]; 
cityLabel.backgroundColor = [UIColor clearColor]; 
cityLabel.textColor = [UIColor whiteColor]; 
cityLabel.text = @"Loading..."; 
cityLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:18]; 
cityLabel.textAlignment = NSTextAlignmentCenter; 
[header addSubview:cityLabel]; 

UILabel *conditionsLabel = [[UILabel alloc] initWithFrame:conditionsFrame]; 
conditionsLabel.backgroundColor = [UIColor clearColor]; 
conditionsLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:18]; 
conditionsLabel.textColor = [UIColor whiteColor]; 
[header addSubview:conditionsLabel]; 

// bottom left 
UIImageView *iconView = [[UIImageView alloc] initWithFrame:iconFrame]; 
iconView.contentMode = UIViewContentModeScaleAspectFit; 
iconView.backgroundColor = [UIColor clearColor]; 
[header addSubview:iconView]; 

[[RACObserve([WXManager sharedManager], currentCondition) 
    deliverOn:RACScheduler.mainThreadScheduler] 
subscribeNext:^(WXCondition *newCondition) { 
    temperatureLabel.text = [NSString stringWithFormat:@"%.0f°",newCondition.temperature.floatValue]; 
    conditionsLabel.text = [newCondition.condition capitalizedString]; 
    cityLabel.text = [newCondition.locationName capitalizedString]; 

    iconView.image = [UIImage imageNamed:[newCondition imageName]]; 
}]; 

RAC(hiloLabel, text) = [[RACSignal combineLatest:@[ 
                RACObserve([WXManager sharedManager], currentCondition.tempHigh), 
                RACObserve([WXManager sharedManager], currentCondition.tempLow)] 
              reduce:^(NSNumber *hi, NSNumber *low) { 
               return [NSString stringWithFormat:@"%.0f°/%.0f°",hi.floatValue,low.floatValue]; 
              }] 
         deliverOn:RACScheduler.mainThreadScheduler]; 

[[RACObserve([WXManager sharedManager], hourlyForecast) 
    deliverOn:RACScheduler.mainThreadScheduler] 
subscribeNext:^(NSArray *newForecast) { 
    [self.tableView reloadData]; 
}]; 

[[RACObserve([WXManager sharedManager], dailyForecast) 
    deliverOn:RACScheduler.mainThreadScheduler] 
subscribeNext:^(NSArray *newForecast) { 
    [self.tableView reloadData]; 
}]; 

[[WXManager sharedManager] findCurrentLocation]; 

}

希望你能帮助我,在此先感谢!

回答

1

应用程序被切断的顶部和底部

您必须使用适当大小的屏幕上推出的所有器件尺寸。现在最简单的方法就是LaunchScreen故事板。制作一个新项目,你会看到它是如何配置的。

+0

嗨,感谢您的回复。 我添加了一个LaunchScreen.storyboard文件到我的项目中,我刚从一个新的空白项目中复制它。屏幕仍然被切断。我现在能做什么?我需要改变一些东西才能使它起作用吗? –

+0

我说过,看看它是如何配置的。如果你没有看到如何,最好把你的代码复制到一个新的项目中。新项目将自动使用启动画面故事板。 – matt

+0

问题是,该项目正在使用大量的cocoapods框架..我试图将其复制到一个新的项目,但它不工作。我从一个新项目中复制了LaunchScreen.storyboard,并试图查看这个文件和另一个新文件是否有不同,并且没有看到任何区别。我能做什么? –

相关问题