iOS11适配及iPhoneX适配

iOS11适配

1.导航栏返回按钮位置问题(17-12-01第一次修改)

解决方案:重写navigationItem,使用UIbutton代替,改变UIbutton的偏移量来控制,或者使用自动布局来控制(同样的,TitleView的偏移问题也可以使用自动布局来控制)。
第一种方法:http://www.jianshu.com/p/26fc39135c34
参考文章链接:App适配iOS 11,作者zhao0

UIImage *backImage = [[UIImage imageNamed:@"top_arrows"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
self.navigationBar.backIndicatorImage = backButtonImage;
self.navigationBar.backIndicatorTransitionMaskImage = backButtonImage;

第二种方法:

重写nav的- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated方法中
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.titleLabel.font = [UIFont systemFontOfSize:18];
        [button setBackgroundImage:[UIImage imageNamed:@"top_arrows"] forState:UIControlStateNormal];
        //        [button setImage:[UIImage imageNamed:@"top_arrows"] forState:UIControlStateNormal];
        //        [button setImage:[UIImage imageNamed:@"top_arrows"] forState:UIControlStateHighlighted];
        button.size = CGSizeMake(12, 20);
        // 让按钮内部的所有内容左对齐
        button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
        // 让按钮的内容往左边偏移10
        button.contentEdgeInsets = UIEdgeInsetsMake(0, -10, 0, 0);
        [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(back) forControlEvents:UIControlEventTouchUpInside];
        
        // 修改导航栏左边的item
        viewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];

2.UITableView的section间距过大的问题

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 15.0f;//如果不需要使用,则改为0.001f
}
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 0.001f;
    
}
//解决Group类型section之间的间距变宽的问题
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    return [[UIView alloc] init];
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc] init];
}

3.TableView的偏移问题,iPhoneX上MJRefresh偏移问题;

//self.automaticallyAdjustsScrollViewInsets = NO;此方法不用
if (@available(iOS 11.0, *)) {
        //底下这三句是解决mjrefresh 上拉偏移的bug
        self.mainTableView.estimatedRowHeight = 0;
        self.mainTableView.estimatedSectionHeaderHeight = 0;
        self.mainTableView.estimatedSectionFooterHeight = 0;
    } else {
        // Fallback on earlier versions
    }

4.权限问题

定位权限问题:NSLocationAlwaysUsageDescriptionNSLocationWhenInUseUsageDescriptionNSLocationAlwaysAndWhenInUsageDescription
相册权限问题:NSCameraUsageDescriptionNSPhotoLibraryAddUsageDescriptionNSPhotoLibraryUsageDescription

5.在导航栏中添加一个searchbar会让导航栏高度增加,具体的处理方式如下。2018-02-07日编辑

UIView *titleView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 32)];
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:titleView.bounds];
searchBar.placeholder = @"搜索";
searchBar.searchBarStyle = UISearchBarStyleMinimal;
[titleView addSubview:searchBar];
self.navigationItem.titleView = titleView;

iPhoneX适配问题:

1.导航栏高度问题(17-12-01 第一次修改)

首先,ios11之前,导航栏高度为64pt,也就是nav(44pt) + status(20pt);但是,在ios11开始,多了一个大标题(prefersLargeTitles ),设置prefersLargeTitles = yes后默认为96pt.反之则为64pt。在iPhone X上状态栏的20pt变为了44pt.所以,对导航栏上的高度还需要进行判断,常用宏如下:

//判断iPhone X
#define isIPhoneX     (SCREEN_WIDTH == 375.f && SCREEN_HEIGHT == 812.f)
// iphoneX的导航栏
#define NaviH (screenH == 812 ? 88 : 64) // 812是iPhoneX的高度
#define  StatusBarHeight      (isIPhoneX ? 44.f : 20.f)//状态栏高度

2 TabbarController跳转到二级界面是向上偏移的问题

// 修改tabBra的frame
重写nav的- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated方法中

    if (isIPhoneX)//解决push时tabbar瞬间上移的问题
    {
        CGRect frame = self.tabBarController.tabBar.frame;
        frame.origin.y = [UIScreen mainScreen].bounds.size.height - frame.size.height;
        self.tabBarController.tabBar.frame = frame;
    }

3.tableview中界面不显示的问题。

在iphoneX中,不要使用动态高度,包括屏幕比例的代码约束也不行。

以上,有好的建议和指正欢迎拍板子,谢谢。

你可能感兴趣的:(iOS11适配及iPhoneX适配)