0

It seems in the file: https://github.com/50pixels/FPPopover/blob/master/FPPopoverController.m#L89

At that line it says if the debug option is set to announce it. I don't want it set, nor do I remember setting it. If that's the reason, how do I unset debug? If it's not, how do I make it stop saying that.

JOM
  • 8,139
  • 6
  • 78
  • 111
user212541
  • 1,878
  • 1
  • 21
  • 30

1 Answers1

1

The easiest approach to avoiding the NSLog message is to simply comment it out.

As to your question either some header file or the compilation command is defining FP_DEBUG. Search the header files, find FP_DEBUG and unset it (comment it out or use #undef). If it isn't in a header file, look at the targets build settings (select the target, click 'build settings', search for FP_DEBUG. If you find it, like in 'Other C Flags', remove it.

GoZoner
  • 67,920
  • 20
  • 95
  • 145
  • I cmd-f'd FP_DEBUG in every FP file, to no avail as far as finding a setting goes. And in target build settings I searched for it as well, to no avail. – user212541 Apr 13 '13 at 18:43
  • Found it. Was in FPPopoverController.m, right above it. Doh. Edit: And ARCMacros.h – user212541 Apr 13 '13 at 19:08