I am having same issue as MFMessageComposeViewController issues in iOS8 but the solution does not work for me. Anyone have ideas where to start?
Asked
Active
Viewed 526 times
1 Answers
0
Turns out it was one of the compiled frameworks which was implementing the deprecated property. Gotta love outdated code.....
The culprit in framework.
@implementation UIViewController (UIViewController_Additions)
-(BOOL)canBecomeFirstResponder {
return YES;
}

Naqi Syed
- 11
- 1