0

I am having same issue as MFMessageComposeViewController issues in iOS8 but the solution does not work for me. Anyone have ideas where to start?

Community
  • 1
  • 1
Naqi Syed
  • 11
  • 1

1 Answers1

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