0

When I use Xcode, it shows warnings telling me a class doesn't conform to a protocol. How should I make it do something similar when using AppCode?

I have searched for it, but I can't find a solution.

Pang
  • 9,564
  • 146
  • 81
  • 122
showlog
  • 68
  • 7

1 Answers1

0

You can press shift-enter on the protocol name to bring up a menu that will ask you if you want to generate protocol stubs, or you can click inside the class and press ctrl-o which will bring up a list of all the members that you can override. Just select the ones you want.

Myk
  • 979
  • 6
  • 16