6

i use a piece of code for drop shadow on a view with help of slider. Slider is set -15 to 15. This code works awesome when slider.value is positive but app stop working if its negative. the crash log is weird Terminating in response to backboardd's termination.

i got this log first time.What is that?

here is my code.

    childViews.layer.shadowColor = [[UIColor blackColor] CGColor];
    childViews.layer.shadowOffset = CGSizeMake(slide,slide);
    childViews.layer.shadowOpacity = 1.0;
    childViews.layer.shadowRadius=10;
    childViews.layer.masksToBounds = NO;
    childViews.layer.shouldRasterize = YES;
Blind Ninja
  • 1,063
  • 13
  • 28

2 Answers2

2

backboardd is the companion daemon for SpringBoard. "Terminating in response to backboardd's termination” most likely means that backboardd crashed. Check to see if there are any backboardd crash logs and, if present, file a bug report with Apple.

John Scalo
  • 3,194
  • 1
  • 27
  • 35
  • @John, did u mean that it is an apple bug? But for me this issue is happening while executing a specific feature of the App. – arango_86 May 04 '15 at 18:01
  • Yes, I did mean that it's an Apple bug. There should be nothing that your app can do to cause backboardd to crash. – John Scalo May 05 '15 at 00:25
  • 1
    @arango_86 Just check your app if its using too much memory instantly. Sometimes instant memory leads to backboard deamon's termination. As apple said to me. :-) This might be your app or your mac machine. – Blind Ninja May 05 '15 at 11:05
1

Just check your app if its using too much memory instantly. Sometimes instant memory leads to backboard daemon's termination. As apple said to me. :-) This might be your app or your mac machine.

Blind Ninja
  • 1,063
  • 13
  • 28