UITextInputMode currentInputMode is deprecated. 警告的解决

如果你的工程最低支持版本为7.0 你会发现有警告 : 'currentInputMode' is deprecated: first deprecated in iOS 7.0

替换方案:UITextInputMode *currentInputMode = [notification object];

或者:

UITextView *textView = [[UITextView alloc] init];
UITextInputMode *currentInputMode = textView.textInputMode;
原文地址:https://www.cnblogs.com/lyz0925/p/7240940.html