热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

奇怪的NavBar在iOS11Xcode9中拉伸

如何解决《奇怪的NavBar在iOS11Xcode9中拉伸》经验,为你挑选了1个好方法。

我的NavBar按钮atm有点问题。我升级到Xcode 9 / ios 11,突然之间,曾经是导航栏侧面的小按钮的UIBarButtonItems(例如标准ios应用程序中的后退或编辑按钮)开始大量扩展。这是一张照片:

我的代码很简单:

self.navigationItem.rightBarButtOnItem= UIBarButtonItem(image: image2, style: .plain, target: self, action: #selector(messageScreen))

有谁知道如何解决这一问题?谢谢。



1> Okan..:

迅速:

let widthCOnstraint= button.widthAnchor.constraint(equalToConstant: 30)
let heightCOnstraint= button.heightAnchor.constraint(equalToConstant: 30)
heightConstraint.isActive = true
widthConstraint.isActive = true

目标C:

[button.widthAnchor constraintEqualToConstant:30].active = YES;
[button.heightAnchor constraintEqualToConstant:30].active = YES;

//在设置导航按钮之前添加这些行


推荐阅读
author-avatar
铁合金在线
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有