What can I do to fix Bottom layout is deprecated iOS 11, I am using Xcode 9 beta 2.
相关问题
- UITableViewCell layout not updating until cell is
- App crash when presenting UIAlertController [dupli
- Xcode 9 simulator doesn't save userdefaults
- iOS autolayout - gap between image and top of the
- Simultaneous accesses to 0x10f10df48, but modifica
相关文章
- Open iOS 11 Files app via URL Scheme or some other
- Xcode 9 simulator remove frames
- iOS - proportional spacing with autolayout
- How to position a child view relative to containin
- iOS 7/8 UITableView Cell: Two UILabels with dynami
- Adaptive swapping of View Controllers in response
- How to make UITableViewCell display fullscreen (al
- iOS 11 : Cellular Signal strength
Simply check the "Use safe area layout guides" button in the File Inspector of the IB.
Function of @paper1111 works fine in Xcode Version 9.3.1, but for me not worked first time. After two days of World War with Interface Builder
Solution:
1) check the "Use safe area layout guides" button in the File Inspector of the Interface Builder.
2) uncheck the "Use safe area layout guides" button in the File Inspector of the Interface Builder.
3) check again the "Use safe area layout guides" button in the File Inspector of the Interface Builder.
According to this, in iOS 11, IB replaces
bottomLayoutGuide
bysafeAreaLayoutGuide
.