UITableViewAutomaticDimension has been renamed to UITableView.automaticDimension
//4.0 return UITableViewAutomaticDimension
//4.2 return UITableView.automaticDimension
If this helped you, share and pass it on! 😀 ➡️ 🐦
//4.0 return UITableViewAutomaticDimension
//4.2 return UITableView.automaticDimension
If this helped you, share and pass it on! 😀 ➡️ 🐦
//4.0 Notification.Name.UIKeyboardWillHide //change to //4.2 UIResponder.keyboardWillHideNotification //4.0 Notification.Name.UIKeyboardWillChangeFrame //4.2 UIResponder.keyboardWillChangeFrameNotification //4.0 Notification.Name.UIApplicationWillResignActive //4.2 UIApplication.willResignActiveNotification //4.0 let keyboardScreenEndFrame = (userInfo[UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue //4.2 let keyboardScreenEndFrame = (userInfo[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValue