Mehul Solanki
Mehul Solanki

Reputation: 463

Application crash on start up

My application was working perfectly good and suddenly i'm getting crash on start up with iOS 8 and previous OS also now.

The crash log looks like:

iPhone kernel[0] <Notice>: xpcproxy[566] Container: /private/var/mobile/Containers/Data/Application/xxxxxx-xxxx-xxxxx-xxxxxxxx (sandbox)

iPhone ReportCrash[567] <Error>: task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)

iPhone ReportCrash[567] <Notice>: ReportCrash acting against PID 566

iPhone ReportCrash[567] <Notice>: Formulating crash report for process app_name[566]

iPhone locationd[63] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0

iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.xxxxx[0xc36c][566]) <Notice>: Service exited due to signal: Trace/BPT trap: 5

iPhone SpringBoard[43] <Warning>: Application 'UIKitApplication:com.xxxxx[0xc36c]' crashed.

iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 2, priority: No such process

iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 4096, priority: No such process

I already wondered for this issue but didn't get any exact solution. Please help for me as i need to solve this issue as soon as possible. Any help will be surely appreciate.

Thanks in advance.!!..

Upvotes: 5

Views: 7915

Answers (2)

Bhat
Bhat

Reputation: 602

I was getting this crash during the following scenario-- There was a label in Main Story board scene and its reference was in one of the view controller. But in View controller class IBOutlet UILable was not created but in story board i had tried to connect it with the UILable (Which was not connected properly)..

By resolving above the issue got fixed..

Upvotes: 0

ViTUu
ViTUu

Reputation: 1204

I had a similar problem.

iPhone ReportCrash[567] : task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)

I tried this to solve my problem and it worked fine.

Go to your Project > Build Settings > Search per Swift Compiler > in Optimization Level > set Debug and Release to None[-Onone]

Good luck.

Upvotes: 1

Related Questions