网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

ios7适配-创新互联

1.状态栏20px高度问题ios7适配
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) 
{
        [application setStatusBarStyle:UIStatusBarStyleLightContent];
        self.window.clipsToBounds=YES;
        self.window.frame=  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
//added on 19th Sep        self.window.bounds = CGRectMake(0, 20, self.window.frame.size.width, ScreenHeight-20);
    }

工程Plist中设置:

成都创新互联公司专注于桂平企业网站建设,响应式网站设计,商城网站制作。桂平网站建设公司,为桂平等地区提供建站服务。全流程按需规划网站,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务

View controller-based status bar appearance = NO;

2.部分页面不能适配的,强制写回

[self.view setBounds:CGRectMake(0, -20, self.view.bounds.size.width, self.view.bounds.size.height)];

 3.

if (systemVersion >= 7.0)
{
      self.edgesForExtendedLayout = UIRectEdgeNone;
      self.extendedLayoutIncludesOpaqueBars= NO;
      self.modalPresentationCapturesStatusBarAppearance= NO;    
 }

4 搜索栏隐藏在状态后面

-(void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        CGRect statusBarFrame=  [[UIApplication sharedApplication] statusBarFrame];
        [UIView animateWithDuration:0.25 animations:^{
for (UIView *subview in self.view.subviews)
                subview.transform= CGAffineTransformMakeTranslation(0, statusBarFrame.size.height);
        }];
    }
}

-(void)searchDisplayControllerWillEndSearch:(UISearchDisplayController *)controller {
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        [UIView animateWithDuration:0.25 animations:^{
for (UIView *subview in self.view.subviews)
                subview.transform= CGAffineTransformIdentity;
        }];
    }
}

分享题目:ios7适配-创新互联
文章地址:http://bjjierui.cn/article/jsjce.html

其他资讯