Search results for

LLDB crash

29,540 results found

Post

Replies

Boosts

Views

Activity

Common iOS Simulator Error Messages
There are a couple error messages that developers have seen when using the iOS Simulator. We can certainly do better to make these error messages less cryptic in future releases, but for now, hopefully this post will help you out. Note that this information (likely a more condensed form of it since I am quite verbose here) should appear in Xcode release notes.1) Unable to boot the iOS SimulatorThis error message will appear in iOS Simulator, and if hitting Build&Run from Xcode, you will likely get an (Domain = DTiPhoneSimulatorErrorDomain, Code = 2) error there as well. With iOS 7 and later, the simulator runtime gained its own bootstrap server (launchd_sim) rather than relying on the host's launchd. In Xcode 6.0 and 6.1, this error message is only displayed in the event that launchd_sim crashes upon launch before the simulator can checkin with it. The only known cause of this issue is from the installation of 3rd party software which alters the behavior of OS X in unsupported ways by setting DYL
0
0
4.3k
Jun ’15
Mail.app keeps crashing
Mail.app seems there is a nil error somewhere. tried to delete container and library contents for mail. after mail.app begins fetching new mails crash occurs...09.06.15 02:10:10,521 Mail[5854]: An exception occurred during invocation of -[MFMessageRouter _routeQueuedMessages]09.06.15 02:10:10,522 Mail[5854]: *** setObjectForKey: key cannot be nil09.06.15 02:10:10,523 Mail[5854]: ( 0 CoreFoundation 0x00007fff83a9031c __exceptionPreprocess + 172 1 libobjc.A.dylib 0x00007fff8a069c48 objc_exception_throw + 48 2 CoreFoundation 0x00007fff8396cb78 -[__NSDictionaryM setObject:forKey:] + 2296 3 MailCore 0x00007fff81d21ca6 -[MCJunkRecorder setImageJunkInfo:forKey:] + 98 4 MailCore 0x00007fff81d45861 -[MCMimePart(StringRendering) renderString:] + 3030 5 MailCore 0x00007fff81d449cc -[MCMimeBody(StringRendering) renderStringForJunk:renderPart:] + 264 6 MailCore 0x00007fff81d44c5b -[MCMimeBody(StringRendering) renderString:] + 141 7 MailCore 0x00007fff81d4477f -[MCMessage(StringRendering) renderBody:] + 98 8 MailC
12
0
3.6k
Jun ’15
Reply to Mail.app keeps crashing
I have the same behavior, continous crashing after launching, except for a different cause:Exception Name: NSInvalidArgumentExceptionDescription: -[MFPOPAccount hasServerDefinedAllMailMailbox]: unrecognized selector sent to instance 0x7ff291518280User Info: (null)0 CoreFoundation 0x00007fff94455b35 __exceptionPreprocess + 1651 libobjc.A.dylib 0x00007fff8a79f46a objc_exception_throw + 482 CoreFoundation 0x00007fff94458b1d -[NSObject(NSObject) doesNotRecognizeSelector:] + 2053 CoreFoundation 0x00007fff9439458a ___forwarding___ + 10024 CoreFoundation 0x00007fff94394118 _CF_forwarding_prep_0 + 1205 Mail 0x0000000109147cd0 Mail + 23011366 CoreFoundation 0x00007fff9436b8d7 __NSArrayGetIndexesPassingTest + 5837 Mail 0x0000000108f40b3d Mail + 1749098 Mail 0x0000000108f3f6b1 Mail + 1696499 Mail 0x0000000108f3ec73 Mail + 16702710 Mail 0x0000000108f3eb27 Mail + 16669511 AppKit 0x00007fff8f09f734 -[NSToolbar validateVisibleItems] + 16712 Mail 0x0000000108f676ef Mail + 33355113 Mail 0x0000000108f67694 Mail + 3334
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Swift 2 crashing on where clause inside if-let
Converting my app to use Swift 2, and I'm getting a crash on this if-let where clause (that worked in 1.2):Used to look like this:if showFilterButton { if let dataController = dataController() as? FilteredCoreDataController, filter = dataController.filter where filter.customized { filterButton = UIBarButtonItem(image: UIImage(named: FilterFilled), style: .Plain, target: self, action: showFilters:) } else { filterButton = UIBarButtonItem(image: UIImage(named: Filter), style: .Plain, target: self, action: showFilters:) } } else { filterButton = nil }But it crashes on line 2. Finally discovered that removing the where clause doesn't crash the app (but obviously doesn't give me the behavior I want). Thought it was something weird like Apple changing how where clauses with in an if-let clause, but even separating it out into a nested if doesn't work:if showFilterButton { if let dataController = dataController() as? FilteredCoreDataController, filter = dataController.filter {//where filte
1
0
466
Jun ’15
Reply to Swift 2 crashing on where clause inside if-let
So I was able to fix the crash by making my filter (previously an object that implemented my Filter protocol, which declares a customized Bool variable) a subclass of a new (middleman) BaseFilter class I created (which in turn implements Filter). For some reason, optionally casting the filter to BaseFilter and then trying to access the customized Bool doesn't crash.if let dataController = dataController() as? FilteredCoreDataController, filter = dataController.filter as? BaseFilter where filter.customized {This line doesn't crash anymore after changing the class/protocol hierarchy.Still doesn't explain why it requires filter to be a subclass instead of just implementing a protocol, kind of defeats the purpose of declaring a protocol if I can't access the variables it declares.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to I want to put bordercolor with uiview by swift.
Hello Justin.Thank you for reprying.>Are you seeing a crash with the code you pasted or is it just having no effect?I'm sorry.There is a crash.Crash log is following.---------------------------------------------------------------2015-06-09 13:54:59.860 shotworks_for_ph2_by_swift[43366:607] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIView 0x7fc5e04d86c0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key borderColor.'*** First throw call stack:( 0 CoreFoundation 0x000000010d435495 __exceptionPreprocess + 165 1 libobjc.A.dylib 0x000000010d19499e objc_exception_throw + 43 2 CoreFoundation 0x000000010d4b9919 -[NSException raise] + 9 3 Foundation 0x000000010cd75530 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 259 4 UIKit 0x000000010d716569 -[UIView(CALayerDelegate) setValue:forKey:] + 149 5 CoreFoundation 0x000000010d431400 -[NSArray makeObjectsPerformSelector:] + 224 6 UIKit 0x000000010d911893 -[UINib instantiateWithOw
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’15
Reply to Cryptic error messages, SSDD
It appears to be crapping out on this perfectly harmless line of code (which compiled fine in 1.2), so I think it's the Swift compiler just crashing and burning like all during 1.0 Beta. Perhaps due to some project-complexity issue? Anyone else seeing problems like this already? func moveToAction(target: SCNVector3) -> SCNAction {
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
AirWatch MDM crashes
This is mostly a heads-up to those looking to install the iOS9 beta - AirWatch Agent, for their MDM platform, crashes and can't execute under this beta.Awkward, but, beta is beta. Identifier: com.air-watch.agent Version: 5 (5.0.1) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2015-06-09 15:08:28.28 +1000 Launch Time: 2015-06-09 15:08:26.26 +1000 OS Version: iOS 9.0 (13A4254v) Report Version: 105 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000 Triggered by Thread: 0 Filtered syslog: None found Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 ??? 0000000000 0 + 0 1 AirWatch 0x0039a297 0xe0000 + 2859671 2 AirWatch 0x0033ddab 0xe0000 + 2481579 3 AirWatch 0x0033dcfd 0xe0000 + 2481405 4 AirWatch 0x0029add3 0xe0000 + 1813971 5 AirWatch 0x000e4e49 0xe0000 + 20041 6 libdyld.dylib 0x360629cf 0x3605d000 + 22991 Thread 0 crashed with ARM Thread State (32-bit): r0: 0x00000000 r1: 0x00000000 r2: 0x000f
3
0
2.7k
Jun ’15