Crash Core Plot library - objective-c

I am using core plot library Release 2.0 downloaded from https://github.com/core-plot/core-plot/releases in MAC application to generate the bar graphs. When i install application on OSX 10.8 and 10.7 application crashes. It works well above 10.8.3. The linker flags is -ObjC and -all_load is already set in build settings.
I am getting below issue in logs. Can any one please look the issue and help me to resolve.
-[NSColorSpaceColor CGColor]: unrecognized selector sent to instance 0x7ff4caa6e0c0
-[NSColorSpaceColor CGColor]: unrecognized selector sent to instance 0x7ff4caa6e0c0
2016-05-10 11:39:17.072 [375:807] (
0 CoreFoundation 0x00007fff8f781d16 __exceptionPreprocess + 198
1 libobjc.A.dylib 0x00007fff96a329ea objc_exception_throw + 43
2 CoreFoundation 0x00007fff8f80ccfe -[NSObject doesNotRecognizeSelector:] + 190
3 CoreFoundation 0x00007fff8f76f073 ___forwarding___ + 371
4 CoreFoundation 0x00007fff8f76ee88 _CF_forwarding_prep_0 + 232
5 CorePlot 0x0000000101720cbf +[CPTTextStyle(CPTPlatformSpecificTextStyleExtensions) textStyleWithAttributes:] + 191
6 CorePlot 0x000000010170e3ee -[CPTTextLayer initWithAttributedText:] + 62
7 CorePlot 0x00000001017083b8 -[CPTAxis updateAxisLabelsAtLocations:inRange:useMajorAxisLabels:] + 1880
8 CorePlot 0x00000001017089cc -[CPTAxis relabel] + 700
9 CorePlot 0x000000010170985a -[CPTAxis layoutSublayers] + 42
10 QuartzCore 0x00007fff9378e9aa _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 312
11 QuartzCore 0x00007fff9378deec _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 308
12 QuartzCore 0x00007fff9378dc74 _ZN2CA11Transaction6commitEv + 274
13 QuartzCore 0x00007fff9378d275 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 63
14 CoreFoundation 0x00007fff8f741f37 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
15 CoreFoundation 0x00007fff8f741e96 __CFRunLoopDoObservers + 374
16 CoreFoundation 0x00007fff8f7168e2 CFRunLoopRunSpecific + 258
17 HIToolbox 0x00007fff951b6c57 RunCurrentEventLoopInMode + 277
18 HIToolbox 0x00007fff951be33d ReceiveNextEventCommon + 355
19 HIToolbox 0x00007fff951be1ca BlockUntilNextEventMatchingListInMode + 62
20 AppKit 0x00007fff903b73e9 _DPSNextEvent + 659
21 AppKit 0x00007fff903b6cf0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
22 AppKit 0x00007fff903b368d -[NSApplication run] + 456
23 AppKit 0x00007fff90630cfb NSApplicationMain + 860
)

Related

Non-existent user defined runtime attribute

I have a simple Mac application that receives the following error when opening a document:
Failed to set (allowsDragging) user defined inspected property on (PKMPDFView): [ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key allowsDragging.
If I intercept the "set" attempt, I see that it originates from the method -[NSIBUserDefinedRuntimeAttributesConnector establishConnection] during nib loading.
Full trace:
0 PDFApp 0x0000000100003592 -[PKMPDFView setValue:forUndefinedKey:] + 49
1 Foundation 0x00007fff309b8dde -[NSObject(NSKeyValueCoding) setValue:forKey:] + 331
2 AppKit 0x00007fff2c08af15 -[NSView setValue:forKeyPath:] + 394
3 AppKit 0x00007fff2c00d029 -[NSIBUserDefinedRuntimeAttributesConnector establishConnection] + 637
4 AppKit 0x00007fff2bdd9719 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1430
5 AppKit 0x00007fff2bdd0991 loadNib + 435
6 AppKit 0x00007fff2bdcfeb5 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 696
7 AppKit 0x00007fff2c005aba +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
8 AppKit 0x00007fff2c005893 -[NSWindowController loadWindow] + 322
9 AppKit 0x00007fff2be18cf5 -[NSWindowController window] + 84
10 AppKit 0x00007fff2bfd8134 -[NSWindowController showWindow:] + 36
11 AppKit 0x00007fff2be18c7a -[NSDocument showWindows] + 116
12 PDFApp 0x0000000100002e75 -[PKMPDFDocument showWindows] + 50
13 AppKit 0x00007fff2c35f13e __80-[NSDocumentController openDocumentWithContentsOfURL:display:completionHandler:]_block_invoke.1039 + 182
14 AppKit 0x00007fff2c36ef70 ___NSMainRunLoopPerformBlock_block_invoke + 25
15 CoreFoundation 0x00007fff2e897a3c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
16 CoreFoundation 0x00007fff2e87a973 __CFRunLoopDoBlocks + 275
17 CoreFoundation 0x00007fff2e879ffe __CFRunLoopRun + 1278
18 CoreFoundation 0x00007fff2e879867 CFRunLoopRunSpecific + 487
19 HIToolbox 0x00007fff2db59d96 RunCurrentEventLoopInMode + 286
20 HIToolbox 0x00007fff2db59b06 ReceiveNextEventCommon + 613
21 HIToolbox 0x00007fff2db59884 _BlockUntilNextEventMatchingListInModeWithFilter + 64
22 AppKit 0x00007fff2be09a73 _DPSNextEvent + 2085
23 AppKit 0x00007fff2c59fe34 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044
24 AppKit 0x00007fff2bdfe885 -[NSApplication run] + 764
25 AppKit 0x00007fff2bdcda72 NSApplicationMain + 804
26 libdyld.dylib 0x00007fff56848015 start + 1
What confuses me is that PKMPDFView is a direct subclass of NSView and has no user defined properties associated with it in the .xib file being loaded. This view also has no outlets defined in the .xib, just a referencing outlet (contentView) from its document. Running find/grep through my development directory finds no instance of "allowsDragging" anywhere. Likewise, using the strings utility reveals no "allowsDragging" in the built app.
I've tried all the standard project cleaning with no change in symptoms.
At the moment, I'm tempted to simply override setValue:forUndefinedKey: and forget it but I'm still curious. Does anyone have information or good guesses about where this would be coming from?
(This is Xcode 10.1 on macOS 10.13.6, in case that matters.)

Tomahawk music player 0.8.4 error message in macOS Sierra

Trying to get Tomahawk music player to work, but i get this error message every minute:
Exception Name: NSInvalidArgumentException
Description: -[SPMediaKeyTap grab]: unrecognized selector sent to instance 0x610000094f00
User Info: (null)
0 CoreFoundation 0x00007fffccc8e52b __exceptionPreprocess + 171
1 libobjc.A.dylib 0x00007fffe1366cad objc_exception_throw + 48
2 CoreFoundation 0x00007fffccd0fd34 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 CoreFoundation 0x00007fffccc00bf5 ___forwarding___ + 1061
4 CoreFoundation 0x00007fffccc00748 _CF_forwarding_prep_0 + 120
5 Tomahawk 0x0000000105f2d746 -[SPMediaKeyTap setShouldInterceptMediaKeyEvents:] + 102
6 Tomahawk 0x0000000105f2d8d3 -[SPMediaKeyTap mediaKeyAppListChanged] + 147
7 Tomahawk 0x0000000105f2d9ca -[SPMediaKeyTap appIsNowFrontmost:] + 234
8 Tomahawk 0x0000000105f2d1b0 appSwitched + 48
9 HIToolbox 0x00007fffcc17e0d5 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1708
10 HIToolbox 0x00007fffcc17d346 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 428
11 HIToolbox 0x00007fffcc17d18f SendEventToEventTargetWithOptions + 43
12 HIToolbox 0x00007fffcc20f43e HIToolboxLSNotificationCallbackAllASNsFunc + 571
13 LaunchServices 0x00007fffcddb5715 ___LSScheduleNotificationFunction_block_invoke_2 + 51
14 CoreFoundation 0x00007fffccc243ac __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
15 CoreFoundation 0x00007fffccc05424 __CFRunLoopDoBlocks + 356
16 CoreFoundation 0x00007fffccc04f66 __CFRunLoopRun + 1878
17 CoreFoundation 0x00007fffccc045b4 CFRunLoopRunSpecific + 420
18 HIToolbox 0x00007fffcc1a5f6c RunCurrentEventLoopInMode + 240
19 HIToolbox 0x00007fffcc1a5da1 ReceiveNextEventCommon + 432
20 HIToolbox 0x00007fffcc1a5bd6 _BlockUntilNextEventMatchingListInModeWithFilter + 71
21 AppKit 0x00007fffca89c5f5 _DPSNextEvent + 1093
22 AppKit 0x00007fffcafac8eb -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1637
23 AppKit 0x00007fffca890fbd -[NSApplication run] + 926
24 QtGui 0x0000000109f277b7 _ZN19QEventDispatcherMac13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE + 515
25 QtCore 0x00000001097a4695 _ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE + 79
26 QtCore 0x00000001097a47f3 _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE + 341
27 QtCore 0x00000001097a7487 _ZN16QCoreApplication4execEv + 199
28 Tomahawk 0x0000000105ebc01f main + 431
29 Tomahawk 0x0000000105ea3d64 start + 52
30 ??? 0x0000000000000002 0x0 + 2
How do i stop the error message from showing?
I don't want the error window to show up every minute. I am far from a computer expert and don't know what is causing it. I have tried to configure Tomahawk music player, but the message won't leave me alone. I have already googled and looked it up, but can't find an answer to my question. I am thankful for replies that can help solve this problem.

What are these magic addresses in my crash reports?

I maintain cTiVo, an open-source OS X project with a large user base. On Yosemite, I started getting sporadic crash notices (EXC_BAD_ACCESS KERN_INVALID_ADDRESS), and I haven't been able to track them down, nor ever reproduce them on my system, nor has anyone been able to reliably recreate them in the field. Although there are a lot of reports, the crashes occur infrequently, and mostly on Yosemite (primarily 10.10.2 and 10.10.3), despite the software running on lots of other systems back to 10.7. They occur across all types of hardware (MBPro, iMac's MacMinis and others). The program doesn't do anything particularly fancy in the UI, but it does drive a lot of command-line programs (via NSTask) to do video processing and related activities.
There are two strange things about the crashes.
First is that they seem to happen across the entire program at random places both in my code and in Apple's routines. The most common (and unhelpful) is in the main run loop (see the first stacktrace below), and many of them happen within view displaying code, e.g. the second trace below. This would lead me to look for an over-released object normally, but as I said, it seems to happen to every kind of object in the program.
The second strange thing is after looking through literally hundreds of these, the invalid addresses upon which they crash almost entirely fall into one of two groups:
0x0000000002798000
0x0000000002998000
0x0000000002A98000
0x0000000002B98000
0x0000000003098000
0x0000000003198000
0x0000000003298000
0x0000000003398000
0x0000000003498000
0x0000000003898000
0x0000000003998000
0x0000000003A98000
0x00000000047ffff8
0x0000000004fffff8
0x00000000057ffff8
0x0000000005fffff8
0x00000000067ffff8
0x0000000006fffff8
0x00000000077ffff8
0x0000000007fffff8
I've stared at these for a long time, and haven't been able to figure out what this tight grouping of invalid addresses might mean. The first group are 1MiB apart and the second are 8MiB apart; AFAIK, I don't have any structures that large in my program. The second group seems to be normally distributed in frequency around 5FFFF8 as the most common. I don't see the same pattern in the first group (there might be two centers, but that may be overfitting the data). In binary, they fall into these patterns (although some of the first group don't seem to appear).
0000001X XXXX1001 10000000 00000000
000001XX X1111111 11111111 11111000
I should mention I also get one other error EXC_ARITHMETIC EXC_I386_DIV at 0x0000000000000000, again at very random places, and there doesn't seem to be any dividing going on.
Any suggestions on why these addresses appear in this patterns, that might give a clue on where to look would be great!
Here's the sample stack traces...
Thread : Crashed: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff94a6a4de mach_msg_trap + 10
1 CoreFoundation 0x00007fff9288eeb4 __CFRunLoopServiceMachPort + 212
2 CoreFoundation 0x00007fff9288e37b __CFRunLoopRun + 1371
3 CoreFoundation 0x00007fff9288dbd8 CFRunLoopRunSpecific + 296
4 HIToolbox 0x00007fff94e3956f RunCurrentEventLoopInMode + 235
5 HIToolbox 0x00007fff94e392ea ReceiveNextEventCommon + 431
6 HIToolbox 0x00007fff94e3912b _BlockUntilNextEventMatchingListInModeWithFilter + 71
7 AppKit 0x00007fff973169bb _DPSNextEvent + 978
8 AppKit 0x00007fff97315f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
9 AppKit 0x00007fff9730bbf3 -[NSApplication run] + 594
10 AppKit 0x00007fff97288354 NSApplicationMain + 1832
11 cTiVo 0x000000010871c234 start
Thread : Crashed: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff98b054de mach_msg_trap + 10
1 CoreGraphics 0x00007fff94ccfb41 _CGSAddStructuralRegionOfType + 148
2 CoreGraphics 0x00007fff94b29901 add_structural_region_of_type + 134
3 AppKit 0x00007fff90647394 _NXSetCursorRect + 680
4 AppKit 0x00007fff90646fa2 -[NSWindow _addCursorRect:cursor:forView:] + 889
5 AppKit 0x00007fff90646c0e -[NSView addCursorRect:cursor:] + 555
6 AppKit 0x00007fff90b1d517 -[NSTableHeaderView resetCursorRects] + 389
7 AppKit 0x00007fff905f9ddb -[NSView(NSInternal) _updateTrackingAreas] + 660
8 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
9 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
10 AppKit 0x00007fff905fb13e -[NSScrollView _updateTrackingAreas] + 119
11 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
12 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
13 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
14 AppKit 0x00007fff905fa21b -[NSView(NSInternal) _updateTrackingAreas] + 1748
15 AppKit 0x00007fff90645ab9 _handleInvalidCursorRectsNote + 1072
16 AppKit 0x00007fff90c1bd21 __35-[NSWindow _postInvalidCursorRects]_block_invoke3305 + 46
17 CoreFoundation 0x00007fff99154da7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
18 CoreFoundation 0x00007fff99154d00 __CFRunLoopDoObservers + 368
19 CoreFoundation 0x00007fff99146e08 __CFRunLoopRun + 872
20 CoreFoundation 0x00007fff99146858 CFRunLoopRunSpecific + 296
21 HIToolbox 0x00007fff920a5aef RunCurrentEventLoopInMode + 235
22 HIToolbox 0x00007fff920a586a ReceiveNextEventCommon + 431
23 HIToolbox 0x00007fff920a56ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
24 AppKit 0x00007fff904e5f81 _DPSNextEvent + 964
25 AppKit 0x00007fff904e5730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
26 AppKit 0x00007fff904d9593 -[NSApplication run] + 594
27 AppKit 0x00007fff904c4a14 NSApplicationMain + 1832
28 cTiVo 0x0000000102a19234 start
Thread : Crashed: com.apple.main-thread
0 libobjc.A.dylib 0x00007fff878ff0ee objc_msgSend + 46
1 AppKit 0x00007fff8e5519a1 -[CALayer(NSContentsAligning) NS_shouldUseContentsAligning] + 32
2 AppKit 0x00007fff8dca1ee9 _NSBackingLayerSetNeedsDisplayInRect + 178
3 QuartzCore 0x00007fff88e849f7 -[CALayer setNeedsDisplay] + 62
4 AppKit 0x00007fff8dca1e10 -[NSView(NSInternal) _setLayerNeedsDisplayInViewRect:] + 648
5 AppKit 0x00007fff8e33a1bb NSViewSetNeedsDisplayInRect + 1077
6 WebKitLegacy 0x00007fff89344b7e setNeedsDisplayInRect(NSView*, objc_selector*, CGRect) + 238
7 AppKit 0x00007fff8dc36772 -[NSView setNeedsDisplay:] + 81
8 AppKit 0x00007fff8dc6244f -[NSTextFieldCell setObjectValue:] + 88
9 AppKit 0x00007fff8dc61fc4 -[NSCell setStringValue:] + 111
10 AppKit 0x00007fff8dccd250 -[NSControl setStringValue:] + 138
11 cTiVo 0x00000001090cf92f -[MTDownloadTableView updateProgressInCell:forDL:] (MTDownloadTableView.m:158)
12 cTiVo 0x00000001090cfc6a -[MTDownloadTableView updateProgress:] (MTDownloadTableView.m:188)
13 CoreFoundation 0x00007fff8650bcdc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
14 CoreFoundation 0x00007fff863fd244 _CFXNotificationPost + 3140
15 Foundation 0x00007fff91d55c31 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
16 cTiVo 0x000000010911cecc __93+[NSNotificationCenter(Threads) postNotificationNameOnMainThread:object:userInfo:afterDelay:]_block_invoke (NSNotificationCenter+Threads.m:44)
17 libdispatch.dylib 0x00007fff8a374323 _dispatch_call_block_and_release + 12
18 libdispatch.dylib 0x00007fff8a36fc13 _dispatch_client_callout + 8
19 libdispatch.dylib 0x00007fff8a37bcbf _dispatch_main_queue_callback_4CF + 861
20 CoreFoundation 0x00007fff864a2c79 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
21 CoreFoundation 0x00007fff8645f30f __CFRunLoopRun + 2159
22 CoreFoundation 0x00007fff8645e858 CFRunLoopRunSpecific + 296
23 HIToolbox 0x00007fff926c4aef RunCurrentEventLoopInMode + 235
24 HIToolbox 0x00007fff926c486a ReceiveNextEventCommon + 431
25 HIToolbox 0x00007fff926c46ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
26 AppKit 0x00007fff8dc26f81 _DPSNextEvent + 964
27 AppKit 0x00007fff8dc26730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
28 AppKit 0x00007fff8dc1a593 -[NSApplication run] + 594
29 AppKit 0x00007fff8dc05a14 NSApplicationMain + 1832
30 cTiVo 0x00000001090b5714 start

Error: 'Attempted to perform another operation with a fetch already in progress', Only in iOS 6

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempted to perform another operation with a fetch already in progress'
First time my application working fine..but then after every time my app is crashed due to the above error and its only happened in iOS6 version devices. but my app is working fine in iOS7 or upper version devices.
The below is stack trace:
(
0 CoreFoundation 0x32e5b2bb <redacted> + 186
1 libobjc.A.dylib 0x3aadb97f objc_exception_throw + 30
2 CoreData 0x32bf5207 <redacted> + 94
3 CoreData 0x32bf591d <redacted> + 92
4 CoreData 0x32c06387 <redacted> + 58
5 CoreData 0x32c04d19 <redacted> + 624
6 CoreData 0x32bfe089 <redacted> + 312
7 CoreData 0x32bfd73f <redacted> + 682
8 CoreData 0x32bfd205 <redacted> + 468
9 CoreData 0x32bfc61d <redacted> + 1644
10 CoreData 0x32bfaf17 <redacted> + 646
11 WhatDidIWear 0x000b1875 -[WDIWDatabase(Years) years] + 848
12 WhatDidIWear 0x000a9b2d -[WDIWCalendar years] + 56
13 WhatDidIWear 0x00095c8f -[YearsViewController initWithNibName:bundle:] + 382
14 WhatDidIWear 0x000945bb -[TemplateViewController initWithDefaultNibName] + 62
15 WhatDidIWear 0x00093567 -[TabBarController yearsVC] + 134
16 WhatDidIWear 0x00093713 -[TabBarController homeViewControllers] + 46
17 WhatDidIWear 0x0008f49b -[TabBarController viewDidLoad] + 510
18 UIKit 0x34cf82d5 <redacted> + 228
19 WhatDidIWear 0x0008e927 -[AppDelegate tabBarController] + 134
20 WhatDidIWear 0x0008de65 -[AppDelegate application:didFinishLaunchingWithOptions:] + 980
21 UIKit 0x34cc3ad9 <redacted> + 252
22 UIKit 0x34cc3663 <redacted> + 1190
23 UIKit 0x34cbb84b <redacted> + 698
24 UIKit 0x34c63c39 <redacted> + 1004
25 UIKit 0x34c636cd <redacted> + 72
26 UIKit 0x34c6311b <redacted> + 6154
27 GraphicsServices 0x369555a3 <redacted> + 590
28 GraphicsServices 0x369551d3 <redacted> + 34
29 CoreFoundation 0x32e30173 <redacted> + 34
30 CoreFoundation 0x32e30117 <redacted> + 138
31 CoreFoundation 0x32e2ef99 <redacted> + 1384
32 CoreFoundation 0x32da1ebd CFRunLoopRunSpecific + 356
33 CoreFoundation 0x32da1d49 CFRunLoopRunInMode + 104
34 UIKit 0x34cba485 <redacted> + 668
35 UIKit 0x34cb7301 UIApplicationMain + 1120
36 WhatDidIWear 0x0008d97f main + 230
37 libdyld.dylib 0x3af12b20 <redacted> + 0
)
I am frustrated now for not solving the above error.
Please give me an idea to solve the above stuff.

xcode 4 iOS 4.3 project template doesn't work

I'm trying to create a multi-view iOS (4.3) application in xcode 4 using the view-based application template but have so far had no luck. Everything builds but then crashes without error, with me getting the message SIGABRT in the line "int retVal = UIApplicationMain(argc, argv, nil, nil);" in supporting file-> main.m
The same thing happens in both my application and the plain (view-based application ) template from xcode.
Any ideas what the problem might be?
Here's the log:
GNU gdb 6.3.50-20050815 (Apple version gdb-1518) (Sat Feb 12 02:52:12 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".Attaching to process 3884.
2011-03-15 18:18:16.226 Server-sideStory[3884:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'UISplitViewController is only supported when running under UIUserInterfaceIdiomPad'
*** Call stack at first throw:
(
0 CoreFoundation 0x00dc45a9 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x00f18313 objc_exception_throw + 44
2 CoreFoundation 0x00d7cef8 +[NSException raise:format:arguments:] + 136
3 CoreFoundation 0x00d7ce6a +[NSException raise:format:] + 58
4 UIKit 0x0031d512 -[UISplitViewController _commonInit] + 165
5 UIKit 0x0031d971 -[UISplitViewController initWithCoder:] + 92
6 Foundation 0x00784c24 _decodeObjectBinary + 3296
7 Foundation 0x00783d91 _decodeObject + 224
8 UIKit 0x00211979 -[UIRuntimeConnection initWithCoder:] + 212
9 Foundation 0x00784c24 _decodeObjectBinary + 3296
10 Foundation 0x007859f5 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1354
11 Foundation 0x00786024 -[NSArray(NSArray) initWithCoder:] + 596
12 Foundation 0x00784c24 _decodeObjectBinary + 3296
13 Foundation 0x00783d91 _decodeObject + 224
14 UIKit 0x00210c36 -[UINib instantiateWithOwner:options:] + 804
15 UIKit 0x00212ab7 -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] + 168
16 UIKit 0x0001817a -[UIApplication _loadMainNibFile] + 172
17 UIKit 0x00018cf4 -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 291
18 UIKit 0x00023617 -[UIApplication handleEvent:withNewEvent:] + 1533
19 UIKit 0x0001babf -[UIApplication sendEvent:] + 71
20 UIKit 0x00020f2e _UIApplicationHandleEvent + 7576
21 GraphicsServices 0x00ffd992 PurpleEventCallback + 1550
22 CoreFoundation 0x00da5944 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 52
23 CoreFoundation 0x00d05cf7 __CFRunLoopDoSource1 + 215
24 CoreFoundation 0x00d02f83 __CFRunLoopRun + 979
25 CoreFoundation 0x00d02840 CFRunLoopRunSpecific + 208
26 CoreFoundation 0x00d02761 CFRunLoopRunInMode + 97
27 UIKit 0x000187d2 -[UIApplication _run] + 623
28 UIKit 0x00024c93 UIApplicationMain + 1160
29 Server-sideStory 0x00002719 main + 121
30 Server-sideStory 0x00002695 start + 53
)
terminate called after throwing an instance of 'NSException'
sharedlibrary apply-load-rules all
Current language: auto; currently objective-c
It's telling you that UISplitViewController is not supported on the iPhone - only works on the iPad.