标签: ios objective-c iphone xcode
如何减少ios 13中导航栏的左右边距。
当我们将布局边距设置为导航栏的子视图时,应用崩溃。但是下面提到的代码在带有xcode 10.3的ios 12中可以正常工作。
子类
for (UIView *view in self.subviews) { view.layoutMargins = UIEdgeInsetsMake(0, 8, 0, 8); }