美文网首页
iOS-iOS 11 适配

iOS-iOS 11 适配

作者: 鱼与熊掌不能兼得 | 来源:发表于2017-11-07 14:07 被阅读9次

    导航栏

    [[UIBarButtonItemappearanceWhenContainedInInstancesOfClasses:@[[UINavigationBarclass]]] setBackButtonTitlePositionAdjustment:UIOffsetMake(1000,-60) forBarMetrics:UIBarMetricsDefault];

    [[UIBarButtonItemappearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColorclearColor]} forState:UIControlStateNormal];

    [[UIBarButtonItemappearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColorclearColor]} forState:UIControlStateSelected];

    [[UIBarButtonItemappearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColorclearColor]} forState:UIControlStateHighlighted];

    不然会导致 UIButtonBarStackView 布局错误

    UITableView

    Section Header Footer 默认是 白色的

    状态栏高度

    44的高度

    automaticallyAdjustsScrollViewInsets 弃用

    相关文章

      网友评论

          本文标题:iOS-iOS 11 适配

          本文链接:https://www.haomeiwen.com/subject/ftcjmxtx.html