Xcodeの bottomLayoutGuide の警告内容
Xcode ( Objective-C ) で下記の警告が発生しました。
( 警告メッセージ原文 )
'bottomLayoutGuide' is deprecated: first deprecated in iOS 11.0 - Use
view.safeAreaLayoutGuide.bottomAnchor instead of
bottomLayoutGuide.topAnchor
どうやら、
bottomLayoutGuide がiOS11.0で非推奨になったようです。
bottomLayoutGuide.topAnchor の代わりに
view.safeAreaLayoutGuide.bottomAnchor を使用してください
との事ですので、
下記の内容の通りに修正しました。
プログラム修正内容
( Objective-C )
/* toItem:self.bottomLayoutGuide ( iOS 11.0 非推奨 ) */
toItem:self.view.safeAreaLayoutGuide.bottomAnchor
以上