NSInvalidArgumentException: unrecognized selector sent to class

I'm trying to find my way around Objective-C and Cocoa, and I've stumbled upon a problem I just can't figure out. I think I'm missing something fundamental here. Here's the issue:
I have a subclass of UIView with a NSMutableArray *_balls declared in its interface. In its initWithFrame method, I write
+_balls = [[NSMutableArray arrayWithCapacity:100] retain];+
Somewhat later, I add an instance of Ball to the array:
+Ball* ball = [[Ball init] retain];+
+[_balls addObject:ball];+
Ball has a method draw; here's how it looks in the interface:
+- (void) draw;+
However, when I try to call "draw" on all Balls, I get an exception. Here's how I call draw:
+int arrayCount = [_balls count];+
+NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];+
+int i;+
+for (i = 0; i < arrayCount; i++) {+
+[[_balls objectAtIndex:i] draw];+
+[pool release];+
And here's the Exception I get:
+2008-03-09 09:42:39.069 Foo[3203:60b] * +[Ball draw]: unrecognized selector sent to class 0x4160+
+2008-03-09 09:42:39.073 Foo[3203:60b] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* +[Ball draw]: unrecognized selector sent to class 0x4160'+
+2008-03-09 09:42:39.074 Foo[3203:60b] Stack: (+
2484785739,
2502521083,
This is running on the iPhone simulator.
Any ideas what I'm doing wrong here? All help would be greatly appreciated.

The problem is simple, when you do [Ball init] you don't instantiate Ball, but you send the message -init to a class whereas it's an instance method... Why does it work ? Well -init is defined in the root class so the Class object can execute it too... However it just returns self and does nothing else.
So here, what you do, is just retaining the Class object, that is the object that represents your Ball class.
What you want to do is to instantiate that class. You need, to do so, to use the factory methods. I think you misunderstood what +arrayWithCapacity: was doing. That method returns an allocated initialized and autoreleased objects. -init just returns an initialized objects, it doesn't allocate anything.
So before sending the init message, you have to send the alloc message to the class object to get an allocated instance that you'll then initialize using -init message, it gives you that :
Ball *ball = [[Ball alloc] init]; // no retain message
ball will contain a reference to a newly allocated and initialized instance of Ball class. And that instance will accept the -draw message, you won't get that exception.
What is important here is memory management. When you own an object you must release the object. There are 3 ways to be responsible of an object ::
// 1. With the alloc/init technique :
MyClass *obj = [[MyClass alloc] init];
// Which can be done using +new message which just make alloc/init in the same message :
MyClass *obj = [MyClass new]; // that technique is not recommanded
// 2. With the copy message :
obj = [anotherObj copy];
// 3. With the retain message :
obj = [anotherObj retain];
Each use of one of this technique must be balanced by a release or an autorelease message :
// 1. The object is deallocated immediately
[obj release];
// 2. The object is deallocated "later" (in AppKit apps lik your,
// it's deallocated at the end of an event loop)
[obj autorelease];
In any other case, you're not responsible of releasing objects, which means that an object you get with another techniques than the 3 up there will be deallocated soon, that's why you do a -retain on your mutable array and that's why you do not have to do a retain on the ball objects for which you use alloc/init messages.
By the way, an array (mutable or not) retains the objects that are being added to it, so if you don't need the reference outside of the array you can release it.
So after adding the object to the array, release it :
Ball *ball = [[Ball alloc] init];
[_balls addObject:ball];
[ball release];
If you don't do that, you'll probably lose the reference to the ball object and you'll have a memory leak.
Also, the autorelease pool is useless with your draw loop.
PS : if you want to format the code beautifully like me, you simply have to use the markups :
// your formatted code here
becomes :
// your formatted code here
And if you want to avoid the format specifier like the or the [] to be transformed into what they mean (code formating, links, etc.) just put an anti-slash '\' before it.

Similar Messages

  • Unrecognized selector sent to instance  ** plz help

    I have a navigation controlled app that display's different table views as you navigate down the path. I decided that I wanted to show a CustomCell instead of the regular default cells provided for the grouped style table.
    I created the CustomCell.h and CustomCell.m files along with the CustomCell.xib nib file.
    I have done this MANY times before in other projects but this one will not let me set any of the fields on the CustomCell. I have stipped this cell down to just one data element called 'desc' and it is a UILabel I am trying to set.
    Here is the CustomCell.h file and some of the .m file using the CustomCell class.
    #import <UIKit/UIKit.h>
    @interface CustomCell : UITableViewCell {
    IBOutlet UILabel *desc;
    @property (nonatomic, retain) IBOutlet UILabel *desc;
    @end
    - (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath
    static NSString *CustomCellIdentifier = @"CustomCellIdentifier";
    CustomCell *cell2 = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];
    if (cell2 == nil)
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
    cell2 = [nib objectAtIndex:0];
    ...do some logic
    cell2.desc.text = [NSString stringWithFormat:@"%@", myText]; //ERROR OCCURS HERE
    return cell2;
    I receive the following error:
    4/4/09 2:27:20 PM todo[1484] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSObject desc]: unrecognized selector sent to instance 0x5239b0'
    The links are all set in IB and the CustomCell is set to be of Class "CustomCell"
    Anyone have any idea why I cannot set the value of the UILabel for the cell2 object?
    Thanks in advance

    RayNewbie wrote:
    I think the recommendation was to make sure the object you got from your nib was an instance of the class you expected. This sounds like an especially good idea given the difference in behavior on the two platforms. For example:
    if (cell2 == nil)
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
    cell2 = [nib objectAtIndex:0];
    // debug code aka introspection
    if ([cell2 isMemberOfClass:[CustomCell class]])
    NSLog(@"%@ is CustomCell", cell2);
    else {
    NSLog (@"%@ is not CustomCell", cell2);
    That is fairly limiting and isn't good practice. You see that approach more in C++, which isn't as strong an object-oriented language as Objective-C. Even in C++ though, there are better ways to handle it.
    In Objective-C, it is pretty easy. Look at it from the perspective of what you want to do. Then, you ask the object if it can do what you want via "respondsToSelector:"

  • Unrecognized selector sent to instance

    UNCAUGHT EXCEPTION (NSInvalidArgumentException): -[IDECustomToolbar setFullScreenAccessoryView:]: unrecognized selector sent to instance 0x403a2ada0
    UserInfo: (null)
    Hints: None
    Backtrace:
      0  0x00007fff97615cfa __exceptionPreprocess (in CoreFoundation)
      1  0x00007fff993629ea objc_exception_throw (in libobjc.A.dylib)
      2  0x00007fff976a0cfe -[NSObject doesNotRecognizeSelector:] (in CoreFoundation)
      3  0x00007fff97603073 ___forwarding___ (in CoreFoundation)
      4  0x00007fff97602e88 _CF_forwarding_prep_0 (in CoreFoundation)
      5  0x000000010cc0bff3 -[IDEWorkspaceWindowController windowDidLoad] (in IDEKit)
      6  0x00007fff96996f6a -[NSWindowController _windowDidLoad] (in AppKit)
      7  0x00007fff9698e646 -[NSWindowController window] (in AppKit)
      8  0x000000010ce0972f -[IDEDocumentController _openUntitledWorkspaceDocumentAndDisplay:simpleFilesFocused:editorDocumentURLOr Nil:error:] (in IDEKit)
      9  0x000000010ccfc961 -[IDEApplicationCommands showTemplateChooserForTemplateKind:] (in IDEKit)
    10  0x00007fff9760598d -[NSObject performSelector:withObject:] (in CoreFoundation)
    11  0x000000010ccf4808 -[IDEApplicationController(IDECommandAdditions) forwardInvocation:] (in IDEKit)
    12  0x00007fff976031f4 ___forwarding___ (in CoreFoundation)
    13  0x00007fff97602e88 _CF_forwarding_prep_0 (in CoreFoundation)
    14  0x00007fff9760598d -[NSObject performSelector:withObject:] (in CoreFoundation)
    15  0x00007fff9689de66 -[NSApplication sendAction:to:from:] (in AppKit)
    16  0x000000010c52d222 -[DVTApplication sendAction:to:from:] (in DVTKit)
    17  0x000000010cc08ca2 -[IDEApplication sendAction:to:from:] (in IDEKit)
    18  0x00007fff9698a917 -[NSMenuItem _corePerformAction] (in AppKit)
    19  0x00007fff9698a66e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] (in AppKit)
    20  0x00007fff96c24c54 -[NSMenu _internalPerformActionForItemAtIndex:] (in AppKit)
    21  0x00007fff96ab7fc9 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] (in AppKit)
    22  0x00007fff969040d3 NSSLMMenuEventHandler (in AppKit)
    23  0x00007fff9861b004 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec (in HIToolbox)
    24  0x00007fff9861a610 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec (in HIToolbox)
    25  0x00007fff986318e3 SendEventToEventTarget (in HIToolbox)
    26  0x00007fff98677a7d _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef (in HIToolbox)
    27  0x00007fff9875e6b1 SendMenuCommandWithContextAndModifiers (in HIToolbox)
    28  0x00007fff987a49f3 SendMenuItemSelectedEvent (in HIToolbox)
    29  0x00007fff98670c15 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ (in HIToolbox)
    30  0x00007fff98668355 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt (in HIToolbox)
    31  0x00007fff9866789e _HandleMenuSelection2 (in HIToolbox)
    32  0x00007fff96803fdb _NSHandleCarbonMenuEvent (in AppKit)
    33  0x00007fff9679a91f _DPSNextEvent (in AppKit)
    34  0x00007fff96799cf0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in AppKit)
    35  0x00007fff9679668d -[NSApplication run] (in AppKit)
    36  0x00007fff96a13cfb NSApplicationMain (in AppKit)
    37  0x000000010c33deec (in Xcode)
    38  0x0000000000000002
    Someone can help me please ? XCode crashes when i try to create new project. I am using Lion 10.7 and XCode4 B110 version. i tried reinstall it and logging in with a different user but no luck.

    Before installing the new copy of XCode, try to uninstall that previous copy first. After that try to install the new copy. May be it works.
    sudo /Developer/Library/uninstall-devtools --mode=all
    use this in terminal window to uninstall.
    Thanks & Regards,
    Rajesh Kumar Yandamuri.

  • Cannot open files - errors with  "unrecognized selector sent to instance"

    I installed 10.5 on MBP and noticed that there is a problem with the file dialog box. Everytime I try to 'Open a file' from any app (Firefox, Word etc...) it does not bring up the file dialog. Instead it throws this error in the console:
    10/27/07 12:36:29 PM Microsoft Word[373] * -[NSNavSegmentSwitchControl initWithFrame:pullsDown:]: unrecognized selector sent to instance 0x1b9c5dd0
    10/27/07 12:36:29 PM Microsoft Word[373] Exception raised!: * -[NSNavSegmentSwitchControl initWithFrame:pullsDown:]: unrecognized selector sent to instance 0x1b9c5dd0
    10/27/07 12:44:17 PM firefox-bin[398] * -[NSNavSegmentSwitchControl initWithFrame:pullsDown:]: unrecognized selector sent to instance 0x17dcf430
    10/27/07 12:44:17 PM firefox-bin[398] Exception raised!: * -[NSNavSegmentSwitchControl initWithFrame:pullsDown:]: unrecognized selector sent to instance 0x17dcf430
    To test this, just launch Firefox and go to File->Open File... and if you don't see the File dialog then you have the problem. I have reinstalled from CD but same problem. I installed 10.5 on an iMac G5 and do not see this problem.
    Any thoughts on what can be done. Its a little difficult to use the computer if I can't open or save files
    Thanks,
    -- John Mac.

    RayNewbie wrote:
    I think the recommendation was to make sure the object you got from your nib was an instance of the class you expected. This sounds like an especially good idea given the difference in behavior on the two platforms. For example:
    if (cell2 == nil)
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
    cell2 = [nib objectAtIndex:0];
    // debug code aka introspection
    if ([cell2 isMemberOfClass:[CustomCell class]])
    NSLog(@"%@ is CustomCell", cell2);
    else {
    NSLog (@"%@ is not CustomCell", cell2);
    That is fairly limiting and isn't good practice. You see that approach more in C++, which isn't as strong an object-oriented language as Objective-C. Even in C++ though, there are better ways to handle it.
    In Objective-C, it is pretty easy. Look at it from the perspective of what you want to do. Then, you ask the object if it can do what you want via "respondsToSelector:"

  • IOS button press causes "unrecognized selector sent to instance"

    Newbie Obj-C / iOS programmer here.  I'm sure this is a common and simple newbie problem; nothing complicated here.
    I created a view-based application with the following files:
    MainWindow.xib
    PushbuttonAppDelegate.h & m
    PushbuttonViewController.h & m
    PushbuttonViewController.xib
    I put one button on PushbuttonViewController.xib.
    I want to drive an instance method ("pushed:") in PushbuttonViewController.m when it's pressed.  However, when I press it, the app crashes with the following log msg:
    [NSCFString pushed:]: unrecognized selector sent to instance 0x4e0bea0
    Various things that I have done:
    declared and defined - (IBAction)pushed:(id)sender; inside PushbuttonViewController.h&m
    implemented pushed: to call NSLog, (but that never gets called).
    added an Object to PushbuttonViewController.xib and set its identity to PushbuttonViewController.
    connected the button to thePushbuttonViewController object's pushed: IBAction.
    cleaned and rebuilt frequently.
    I have a feeling that maybe the PushbuttonViewController hasn't been instantiated or something?  I'm so new to Obj-C and iOS that I'm still very unclear about the whole chain of events, and what has to be connected to what.
    Don't know if I can post a 25K zip file containing a sample project illustrating the problem...
    Any thoughts?
    Thanks,
    Chap

    Okay, I think I solved my problem, and I'll describe it here in case anyone else comes looking...
    I should NOT have "added an Object to the PushbuttonViewController.xib..." and "connected the button to [that] PushbuttonViewController..."
    The PushbuttonViewController.xib came with a "File's Owner" of PushbuttonViewController.  I should have just created my IBAction "wires" from the button to the IBAction in the the "File's Owner."  By creating a second PushbuttonViewController object and wiring to that I apparently messed up the ability to send a message there.
    (xnav -- I had a breakpoint at the top of pushed: but it was never being reached.)
    So although I'm as yet unclear about all the magic the NIB performs, I'm past this one hurdle.
    About that "Unrecognized Selector Sent To Instance" error - I'm betting that's a very common, generic error, almost like "seg fault."  Can anyone offer more details on what can cause it?  In my case, I was misled because my class DID, in fact, have a pushed: method.

  • After Effects CC 2014.2 Freezing and getting "After Effects[717]: -[NSMenu menuID]: unrecognized selector sent to instance" messages

    I’m having this same issue- it’s not crashing constantly but definitely freezes or chugs slowly along.
    Getting the "After Effects[717]: -[NSMenu menuID]: unrecognized selector sent to instance 0x610000263180"
    Thoughts?

    Hmmm.
    This thread seemed to find a solution, but you're not going to like it...
    I'd recommend being as aggressive as you can with other solutions first, such as fixing permissions problem that impedes start of Adobe applications on the off chance that they help.
    This thread on App Nap causing issues would also be worth a look.

  • I'm getting the following error when I want to put something in Mycloud : 6/02/12 21:00:14,689 Cloud: -[__NSCFDictionary name]: unrecognized selector sent to instance 0x1002d57c0

    I'm getting the following error when I want to put something in Mycloud : 6/02/12 21:00:14,689 Cloud: -[__NSCFDictionary name]: unrecognized selector sent to instance 0x1002d57c0

    I'm getting the following error when I want to put something in Mycloud : 6/02/12 21:00:14,689 Cloud: -[__NSCFDictionary name]: unrecognized selector sent to instance 0x1002d57c0

  • Aerendercore on OSX and [NSMenu menuID]: unrecognized selector sent to instance

    Hi,
    I'm trying to run aftereffects in background in OSX using NativeProcess in Adobe AIR. To do it, I need to run the aerendercore in /Contents/aerendercore.app/Contents/MacOS/aerendercore as I'm not able to call an .app directly.
    However, I always this error : aerendercore[3658:903] -[NSMenu menuID]: unrecognized selector sent to instance 0x12f5089e0.
    I also get this error if run directly in terminal, and on all computer having AEFX here at the office.
    Does anobody knows how to run it without getting this error ?
    Thanks

    I just tried running  After Effects CS5.app/Contents/After Effects and I still get the same error (plus some initialization messages).
    So I'm really unable to After Effects as a Native Process on OSX. On windows it was fast and easy. It is the .app folder thing that seems to mess everything.
    Does anybody have a clue, or maybe I'm better to ask on the Adobe Air forum ?

  • Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFBoolean transactionDate]: unrecognized selector sent to instance

    Hi,
    When I run the apps. Than apps crash on the point where data coming from the soap....like line,,
    YPWalletTransaction *transaction = (YPWalletTransaction*)[result.walletTransactionList objectAtIndex:i];.............meas data not coming properly.
    And here is the code.......
    #pragma mark Other Functions
    //Handle the Response of getTransactionForWallet
    -(void)getTransactionsForWalletHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        NSLog(@"getTransactionsForWalletHandlers.......start");
        // Do something with the YPLoginResponse* result
        YPGetTransactionsForWalletResponse* result = (YPGetTransactionsForWalletResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is %d",[result.walletTransactionList count]);
            NSString *deleteQuery = @"delete from AllTransaction where userid = ";
            deleteQuery = [deleteQuery stringByAppendingString:appDelegate.userID];
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"result.walletTransactionList count %d",[result.walletTransactionList count]);
            NSMutableDictionary * transactionList=[[NSMutableDictionary alloc]init];
            NSMutableArray *theArray =[[NSMutableArray alloc] init] ;
            for (int i =0; i< [result.walletTransactionList count] - 2; i++)
                NSLog(@"in loop");           ///////// crash here
                YPWalletTransaction *transaction = (YPWalletTransaction*)[result.walletTransactionList objectAtIndex:i];
                NSString *date=(NSString *)[transaction transactionDate];
                NSLog(@"Transactionnnnnnn Date %@",date);
                [transactionList setValue:transaction.merchantName forKey:@"merchantName"];
                [theArray addObject:[transactionList copy]];
                NSMutableString *transactionDate = [NSMutableString stringWithFormat:@"%@",transaction.transactionDate];
                [transactionDate insertString:@"/" atIndex:2];
                [transactionDate insertString:@"/" atIndex:5];
                NSString *insertQuery = @"Insert into AllTransaction (cardnumber,transactiontype,transactiondate,totalamount,transactionnumber,useri d,merchantname,storename) values(";
                insertQuery = [insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@','%@',%d,%d,%@,'%@','%@')",
                               transaction.cardNumber,transaction.transactionType,transactionDate,transaction. totalAmount,transaction.transactionNumber,appDelegate.userID,transaction.merchan tName,transaction.storeName]];
                //for Future when we get the updated WSDL
                     NSString *insertQuery = @"Insert into AllTransaction (cardnumber,transactiontype,transactiondate,totalamount,transactionnumber,updat edatetimestamp,userid,merchantname,storename,cardreferance) values(";
                     insertQuery = [insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@','%@',%d,%d,'%@',%@,'%@','%@','%@')",
                     transaction.cardNumber,transaction.transactionType,transactionDate,transaction. totalAmount,transaction.transactionNumber,result.updateDatetimestamp,appDelegate .userID,transaction.merchantName,transaction.storeName,transaction.cardReference ]];
                //NSLog(@"Insert Transactions Query is %@",insertQuery);
                ///[DataBase InsertIntoTable:insertQuery];
            NSMutableDictionary *theDictionary = [[NSMutableDictionary alloc] init];
            //NSLog(@"COunttt%d",[theArray count]);
            for (int i=0; i<[theArray count]; i++) {
                theDictionary=[ theArray objectAtIndex:i];
                NSString *currCode=[theDictionary objectForKey:@"merchantName"];
                NSLog(@"Finalllyyyyyyyyy transaction Date====> %@",currCode);
            //Read Update Data From DataBase and Refresh Table
            if([DataBase getNumberOfRows:@"AllTransaction"] > 0)
                NSString *query = @"";
                if([cardreference isEqualToString:@"0"])
                    query = @"Select * from AllTransaction where userid = ";
                    query = [query stringByAppendingString:appDelegate.userID];
                else {
                    query = @"Select * from AllTransaction where userid = ";
                    query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreferance = '%@'",appDelegate.userID,cardreference]];
                NSMutableArray *temp=[DataBase getTransactionTableData:query];
                [resultArray removeAllObjects];
                for (int i=0;i< [temp count]; i++) {
                    [resultArray addObject:[temp objectAtIndex:i]];
                [table reloadData];
        else {
            [Common ShowAlert:result.responseMessage alertTitle:@"Transaction Error"];

    Having the same issue with Numbers in iWork. Was on the phone with Apple Support and went through a variety of trouble shooting methods to no avail.
    Here is the message that occurs on every attempt to start Numbers. This is a user specific issue as I am able to run numbers in a Guest user mode.
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getComponents: not valid for the NSColor NSNamedColorSpace System gridColor; need to first convert colorspace.'
    If anyone has any advice I am all ears.
    Thanks.

  • ITunes and Mail crashing -- unrecognized selector?

    Hi,
    My iTunes is crashing everytime I want to add a song to my library.  It looks like the problem is in thread 0 and related to com.apple.corefoundation.  I've highlighted the relevant lines in the crash report below.
    Interestingly, I'm having a similar problem with Mail -- it crashes everytime I try to open.  Same error, but in thread 5 (Crashed Thread:  5  Dispatch queue: com.apple.root.background-priority).
    Any help is appreciated!
    Process:         iTunes [316]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.5.3 (10.5.3)
    Build Info:      iTunes-10530301~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [138]
    Date/Time:       2012-02-25 08:33:32.929 -0500
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          187418 sec
    Crashes Since Last Report:           29
    Per-App Interval Since Last Report:  171505 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      B1F61368-115A-4677-9190-2A91FFA2E0E9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[316]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[ ]: unrecognized selector sent to class 0x7fff7a445a58'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8ac86fc6 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8cb63d5e objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8ad131ee +[NSObject doesNotRecognizeSelector:] + 190
              3   CoreFoundation                      0x00007fff8ac73e73 ___forwarding___ + 371
              4   CoreFoundation                      0x00007fff8ac73c88 _CF_forwarding_prep_0 + 232
              5   QuickLookUI                         0x00007fff8fa31a3b +[QLPreviewSchemeHandler initialize] + 791
              6   libobjc.A.dylib                     0x00007fff8cb59662 _class_initialize + 320
              7   libobjc.A.dylib                     0x00007fff8cb59517 prepareForMethodLookup + 237
              8   libobjc.A.dylib                     0x00007fff8cb592bb lookUpMethod + 63
              9   libobjc.A.dylib                     0x00007fff8cb56f3c objc_msgSend + 188
              10  QuickLookUI                         0x00007fff8f9bd154 QLPreviewItemLaunchURL + 85
              11  QuickLookUI                         0x00007fff8fa1eebf __-[QLSeamlessOpener _openItems:async:local:]_block_invoke_1 + 679
              12  QuickLookUI                         0x00007fff8fa1e30d -[QLSeamlessOpener _openItems:async:local:] + 2520
              13  AppKit                              0x000000010ba821dd -[NSSavePanel ok:] + 379
              14  CoreFoundation                      0x00007fff8ac7675d -[NSObject performSelector:withObject:] + 61
              15  AppKit                              0x000000010b650cb2 -[NSApplication sendAction:to:from:] + 139
              16  AppKit                              0x000000010b650be6 -[NSControl sendAction:to:] + 88
              17  AppKit                              0x000000010b650b11 -[NSCell _sendActionFrom:] + 137
              18  AppKit                              0x000000010b64ffd4 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2014
              19  AppKit                              0x000000010b6cfd04 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 489
              20  AppKit                              0x000000010b64ebde -[NSControl mouseDown:] + 786
              21  AppKit                              0x000000010b6196e0 -[NSWindow sendEvent:] + 6306
              22  AppKit                              0x000000010b5b216d -[NSApplication sendEvent:] + 5593
              23  iTunes                              0x00000001097a39d5 iTunes + 4835797
              24  AppKit                              0x000000010b8023ff -[NSApplication _realDoModalLoop:peek:] + 708
              25  AppKit                              0x000000010b801fd1 -[NSApplication runModalForWindow:] + 120
              26  AppKit                              0x000000010ba83c6d -[NSSavePanel runModal] + 300
              27  iTunes                              0x0000000109987f1a iTunes + 6819610
              28  iTunes                              0x0000000109987852 iTunes + 6817874
              29  iTunes                              0x0000000109868af9 iTunes + 5643001
              30  iTunes                              0x00000001097a3b17 iTunes + 4836119
              31  CoreFoundation                      0x00007fff8ac7675d -[NSObject performSelector:withObject:] + 61
              32  AppKit                              0x000000010b650cb2 -[NSApplication sendAction:to:from:] + 139
              33  AppKit                              0x000000010b73dfe7 -[NSMenuItem _corePerformAction] + 399
              34  AppKit                              0x000000010b73dd1e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
              35  AppKit                              0x000000010b6bb264 -[NSMenu performKeyEquivalent:] + 281
              36  AppKit                              0x000000010b6b9eb5 -[NSApplication _handleKeyEquivalent:] + 526
              37  AppKit                              0x000000010b5b1c4e -[NSApplication sendEvent:] + 4282
              38  iTunes                              0x00000001097a39d5 iTunes + 4835797
              39  AppKit                              0x000000010b5481f2 -[NSApplication run] + 555
              40  iTunes                              0x000000010930a2ad iTunes + 12973
              41  iTunes                              0x000000010930a114 iTunes + 12564
    Performing @selector(ok:) from sender NSButton 0x7faedf894500
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8cd1cce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff939a37d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff93994a7a abort + 143
    3   libc++abi.dylib                         0x00007fff8ef507bc abort_message + 214
    4   libc++abi.dylib                         0x00007fff8ef4dfcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8cb641b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x00007fff8ef4e001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x00007fff8ef4e05c std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff8ef4f152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x00007fff8cb63e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff8ad131ee +[NSObject doesNotRecognizeSelector:] + 190
    11  com.apple.CoreFoundation                0x00007fff8ac73e73 ___forwarding___ + 371
    12  com.apple.CoreFoundation                0x00007fff8ac73c88 _CF_forwarding_prep_0 + 232
    13  com.apple.QuickLookUIFramework          0x00007fff8fa31a3b +[QLPreviewSchemeHandler initialize] + 791
    14  libobjc.A.dylib                         0x00007fff8cb59662 _class_initialize + 320
    15  libobjc.A.dylib                         0x00007fff8cb59517 prepareForMethodLookup + 237
    16  libobjc.A.dylib                         0x00007fff8cb592bb lookUpMethod + 63
    17  libobjc.A.dylib                         0x00007fff8cb56f3c objc_msgSend + 188
    18  com.apple.QuickLookUIFramework          0x00007fff8f9bd154 QLPreviewItemLaunchURL + 85
    19  com.apple.QuickLookUIFramework          0x00007fff8fa1eebf __-[QLSeamlessOpener _openItems:async:local:]_block_invoke_1 + 679
    20  com.apple.QuickLookUIFramework          0x00007fff8fa1e30d -[QLSeamlessOpener _openItems:async:local:] + 2520
    21  com.apple.AppKit                        0x000000010ba821dd -[NSSavePanel ok:] + 379
    22  com.apple.CoreFoundation                0x00007fff8ac7675d -[NSObject performSelector:withObject:] + 61
    23  com.apple.AppKit                        0x000000010b650cb2 -[NSApplication sendAction:to:from:] + 139
    24  com.apple.AppKit                        0x000000010b650be6 -[NSControl sendAction:to:] + 88
    25  com.apple.AppKit                        0x000000010b650b11 -[NSCell _sendActionFrom:] + 137
    26  com.apple.AppKit                        0x000000010b64ffd4 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2014
    27  com.apple.AppKit                        0x000000010b6cfd04 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 489
    28  com.apple.AppKit                        0x000000010b64ebde -[NSControl mouseDown:] + 786
    29  com.apple.AppKit                        0x000000010b6196e0 -[NSWindow sendEvent:] + 6306
    30  com.apple.AppKit                        0x000000010b5b216d -[NSApplication sendEvent:] + 5593
    31  com.apple.iTunes                        0x00000001097a39d5 0x109307000 + 4835797
    32  com.apple.AppKit                        0x000000010b8023ff -[NSApplication _realDoModalLoop:peek:] + 708
    33  com.apple.AppKit                        0x000000010b801fd1 -[NSApplication runModalForWindow:] + 120
    34  com.apple.AppKit                        0x000000010ba83c6d -[NSSavePanel runModal] + 300
    35  com.apple.iTunes                        0x0000000109987f1a 0x109307000 + 6819610
    36  com.apple.iTunes                        0x0000000109987852 0x109307000 + 6817874
    37  com.apple.iTunes                        0x0000000109868af9 0x109307000 + 5643001
    38  com.apple.iTunes                        0x00000001097a3b17 0x109307000 + 4836119
    39  com.apple.CoreFoundation                0x00007fff8ac7675d -[NSObject performSelector:withObject:] + 61
    40  com.apple.AppKit                        0x000000010b650cb2 -[NSApplication sendAction:to:from:] + 139
    41  com.apple.AppKit                        0x000000010b73dfe7 -[NSMenuItem _corePerformAction] + 399
    42  com.apple.AppKit                        0x000000010b73dd1e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    43  com.apple.AppKit                        0x000000010b6bb264 -[NSMenu performKeyEquivalent:] + 281
    44  com.apple.AppKit                        0x000000010b6b9eb5 -[NSApplication _handleKeyEquivalent:] + 526
    45  com.apple.AppKit                        0x000000010b5b1c4e -[NSApplication sendEvent:] + 4282
    46  com.apple.iTunes                        0x00000001097a39d5 0x109307000 + 4835797
    47  com.apple.AppKit                        0x000000010b5481f2 -[NSApplication run] + 555
    48  com.apple.iTunes                        0x000000010930a2ad 0x109307000 + 12973
    49  com.apple.iTunes                        0x000000010930a114 0x109307000 + 12564
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cd1d7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff92ad45be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff92ad314e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x00000001093102ed 0x109307000 + 37613
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8cd1cbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff939a5274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010931049a 0x109307000 + 38042
    3   com.apple.iTunes                        0x0000000109320b2b 0x109307000 + 105259
    4   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    5   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x0000000109328caa 0x109307000 + 138410
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8cd1cbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff939a5274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010931049a 0x109307000 + 38042
    3   com.apple.iTunes                        0x00000001093103d6 0x109307000 + 37846
    4   com.apple.iTunes                        0x0000000109be98b8 0x109307000 + 9316536
    5   com.apple.iTunes                        0x0000000109be98dd 0x109307000 + 9316573
    6   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    7   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.iTunes                        0x00000001093f69cd 0x109307000 + 981453
    3   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8cd1cdf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8ac64cdb __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x00000001093102ed 0x109307000 + 37613
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x00000001093102ed 0x109307000 + 37613
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x00000001093102ed 0x109307000 + 37613
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8cd1b67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cd1ad71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8ac136fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8ac1be64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8ac1b676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8ac2b38f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x00000001093102ed 0x109307000 + 37613
    7   com.apple.iTunes                        0x0000000109ae9ec6 0x109307000 + 8269510
    8   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8cd1d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff939a3594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff939a4b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8cd1d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff939a3594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff939a4b85 start_wqthread + 13
    Thread 14:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8cd1ce42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff93957dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff93957bb5 usleep + 53
    3   com.apple.AppKit                        0x000000010b782c73 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff94e2974e -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff94e296c6 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8cd1d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff939a3594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff939a4b85 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8cd1cbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff939a52a6 _pthread_cond_wait + 890
    2   com.apple.FinderKit                     0x00007fff8dd2b8d3 TConditionVariable::WaitWithTimeout(TMutex&, unsigned long long, bool&) + 69
    3   com.apple.FinderKit                     0x00007fff8dd57ae8 TThreadSafeQueue<TThumbnailExtractorThread::TThumbnailQueueData>::WaitForChange (unsigned long long) + 40
    4   com.apple.FinderKit                     0x00007fff8dd56c64 TThumbnailExtractorThread::Main() + 310
    5   com.apple.FinderKit                     0x00007fff8dd2bb85 TThread::MainGlue(void*) + 29
    6   libsystem_c.dylib                       0x00007fff939a18bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff939a4b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff68f022e8  rdx: 0x0000000000000000
      rdi: 0x0000000000001b03  rsi: 0x0000000000000006  rbp: 0x00007fff68f02310  rsp: 0x00007fff68f022e8
       r8: 0x00007fff7ad97fb8   r9: 0x00007fff68f01d78  r10: 0x00007fff8cd1cd0a  r11: 0xffffff80002d8220
      r12: 0x00007fff95983164  r13: 0x00007fff7a4450d0  r14: 0x00007fff7ad9a960  r15: 0x00007fff68f02460
      rip: 0x00007fff8cd1cce2  rfl: 0x0000000000000246  cr2: 0x0000000111324000
    Logical CPU: 0
    Binary Images:
           0x109307000 -        0x10a391fef  com.apple.iTunes (10.5.3 - 10.5.3) <F2A947DF-4408-401C-43EF-340F966C91CC> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10a64a000 -        0x10a6cffff  com.apple.iTunes.iPodUpdater (10.4 - 10.4) <E21FD705-7E1C-5960-73D5-0C3D2C2EAA01> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10a724000 -        0x10a750ff7  com.apple.avfoundationcf (2.0 - 63.1) <B36CB7A2-C5EB-3BB6-924B-531868A092EB> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x10a783000 -        0x10a7b0fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
           0x10a7bf000 -        0x10a7c5fff  com.apple.agl (3.1.4 - AGL-3.1.4) <AB6F0403-0C4C-3FF2-B59E-2246E5F8F810> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10a7cc000 -        0x10a925fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10a9a5000 -        0x10a9b5ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10a9be000 -        0x10aca0fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10adbc000 -        0x10adc2fff  com.apple.iPod (1.7 - 19) <316D12C0-BB7B-30DC-97CE-33679C75E558> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10add0000 -        0x10afd2fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
           0x10b061000 -        0x10b38dff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x10b3b7000 -        0x10b3eeff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10b405000 -        0x10b4dbfe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x10b4fb000 -        0x10b53eff7 +libgnsdk_submit.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x10b543000 -        0x10c147fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10c7cf000 -        0x10c835ff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10c877000 -        0x10c87cff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
           0x10c887000 -        0x10c896ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
           0x10c8a4000 -        0x10c8d7ff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10c8f1000 -        0x10c943ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10c955000 -        0x10c95bfff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10c966000 -        0x10c97cfff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10c990000 -        0x10c9cfff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10c9d8000 -        0x10c9dafff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10c9e0000 -        0x10c9e3fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10cbf2000 -        0x10cbf8fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <C0C4CC37-F2FD-301C-A830-EC54D86612D5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10cbff000 -        0x10cc02ff7  libCoreFSCache.dylib (??? - ???) <0E2C3D54-7D05-35E8-BA10-2142B7C03946> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10cc08000 -        0x10cc08ff5 +cl_kernels (??? - ???) <0CB36FC3-52F4-48C9-8E4E-F64D1B10C42D> cl_kernels
           0x10cde0000 -        0x10ce07fff  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <B0925A5D-5355-3ECE-BF2F-E576FF105F5A> /usr/lib/libssl.0.9.7.dylib
           0x10ce42000 -        0x10ce42ffd +cl_kernels (??? - ???) <9CA8FD84-443C-409B-A5BC-A10710E29132> cl_kernels
           0x10ce51000 -        0x10ce52ffc +cl_kernels (??? - ???) <0830F1DF-574F-49ED-904D-6736E9F24951> cl_kernels
           0x10ce63000 -        0x10d1e2ff7  com.apple.CoreFP (2.0.37 - 2.0.37) <7B081D56-6E39-8913-CB64-F1F3E127C77F> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10e2e3000 -        0x10f2acff7  com.apple.CoreFP1 (1.13.35 - 1.13.35) <5816FCB7-4746-C130-7FBA-EF6130D7A7EB> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
           0x1103fe000 -        0x110400fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x110405000 -        0x110409fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x11040e000 -        0x110414fff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11068d000 -        0x1107d8ff7  com.apple.audio.units.Components (1.7.2 - 1.7.2) <DC2BA4BE-E91A-3680-A88A-D8A709C48909> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x110856000 -        0x110857ff3 +cl_kernels (??? - ???) <0CF9BCFE-2875-4ADC-9EF7-F6A4718738E6> cl_kernels
           0x110aa0000 -        0x110aa1ff3 +cl_kernels (??? - ???) <0B79F34B-6D9B-4EE4-9774-B777003BDA06> cl_kernels
           0x110b86000 -        0x110c1bfff  com.apple.mobiledevice (503.2 - 503.2) <91162605-8664-FFE0-3DC2-8AB14B08AD4B> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x110c69000 -        0x110d4cfff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x110da2000 -        0x110f83ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <377AABF6-6E0C-39C0-BAF2-054E9AEF76F7> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x11121c000 -        0x111262ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
           0x111271000 -        0x111304ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1119ba000 -        0x111a4dff7  unorm8_argb.dylib (1.50.69 - compatibility 1.0.0) <62C3F70B-9B04-39BD-BE29-582A1DE89A90> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
           0x119c72000 -        0x119dbefef  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7568BD5E-9003-3BA1-82A9-B6516A05DB4C> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
        0x7fff68f07000 -     0x7fff68f3bbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff89962000 -     0x7fff8996afff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8a2b7000 -     0x7fff8a2b7fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a2b8000 -     0x7fff8a2f6fff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8a2f7000 -     0x7fff8a3d5fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8a3d6000 -     0x7fff8a426fff  com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a47b000 -     0x7fff8a4a2fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8a4a3000 -     0x7fff8a711ff7  com.apple.QuartzComposer (5.0 - 236.3) <F8B96724-2550-32FE-9DE4-22AC7A6C0942> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8a712000 -     0x7fff8a73fff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a749000 -     0x7fff8a9bfff7  com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8aa34000 -     0x7fff8aa50ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8aa60000 -     0x7fff8aa75fff  com.apple.FileSync.framework (6.0.1 - 502.2) <65A5CD1B-766D-33F8-8AC1-0984499838E9> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
        0x7fff8abe3000 -     0x7fff8adb7fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8adb8000 -     0x7fff8adb9ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8adba000 -     0x7fff8ae30fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8ae31000 -     0x7fff8ae38ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8ae39000 -     0x7fff8ae39fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8ae3a000 -     0x7fff8af34ff7  com.apple.DiskImagesFramework (10.7.3 - 331.3) <57A7E46A-5AA4-37FF-B19C-5337CCBCA0CA> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8af52000 -     0x7fff8af6fff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8af70000 -     0x7fff8af7efff  com.apple.HelpData (2.1.2 - 72) <B99E743A-82C9-3058-8FD5-18668CA890F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8af7f000 -     0x7fff8af91ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8af92000 -     0x7fff8b002fff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8b003000 -     0x7fff8b420ff7  com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8b421000 -     0x7fff8b462fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b4a3000 -     0x7fff8b4a3fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8b4a4000 -     0x7fff8b4a8ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8b4a9000 -     0x7fff8b4a9fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8b507000 -     0x7fff8b55bff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b55c000 -     0x7fff8b5b3fff  com.apple.Suggestions (1.1 - 85.1) <DE511C42-D2F2-309C-80EE-53862245DE22> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b61a000 -     0x7fff8b733fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8b734000 -     0x7fff8b750ff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <C1DF4A08-3CBA-3EEA-BA6E-3557F09052FE> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b751000 -     0x7fff8b763ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8b764000 -     0x7fff8b78cff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8b78d000 -     0x7fff8b7e8ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b7f5000 -     0x7fff8bdd9fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8bdda000 -     0x7fff8be50fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8befd000 -     0x7fff8bf26fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8c108000 -     0x7fff8c127fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8c1f0000 -     0x7fff8c23efff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8c23f000 -     0x7fff8c2c3ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c2c4000 -     0x7fff8c32eff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8c73d000 -     0x7fff8ca67ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ca68000 -     0x7fff8ca6efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8ca6f000 -     0x7fff8ca71ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8ca72000 -     0x7fff8cab5ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <85D00F5C-43ED-33A9-80B4-72EB0EAE3E25> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8cb1f000 -     0x7fff8cb4cfff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8cb4d000 -     0x7fff8cc31e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff8cc32000 -     0x7fff8cc8afff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8cc8b000 -     0x7fff8cc8efff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8cc8f000 -     0x7fff8cc95fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff8cccc000 -     0x7fff8ccf7ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff8ccf8000 -     0x7fff8cd03ff7  com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8cd04000 -     0x7fff8cd05ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8cd06000 -     0x7fff8cd26fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cd3b000 -     0x7fff8cd44ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d02a000 -     0x7fff8d076ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d0cd000 -     0x7fff8d0cefff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8d28c000 -     0x7fff8d2d0ff7  com.apple.MediaKit (12 - 589) <7CFF29BF-D907-3593-B338-0BB48643B2A8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8d325000 -     0x7fff8d325fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8d691000 -     0x7fff8d695fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <37517279-C92E-3217-B49A-838198B48787> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8d696000 -     0x7fff8d6cbfff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8d6cc000 -     0x7fff8d6daff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8d6db000 -     0x7fff8d71bff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
        0x7fff8d71c000 -     0x7fff8d71dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8d71e000 -     0x7fff8d734ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8d772000 -     0x7fff8d812fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d813000 -     0x7fff8d820fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8d821000 -     0x7fff8d9c0fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d9c1000 -     0x7fff8daa3fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8daa4000 -     0x7fff8db17fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8db18000 -     0x7fff8db9dff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8dbba000 -     0x7fff8dc3dfef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8dc5e000 -     0x7fff8dfb0fff  com.apple.FinderKit (1.0.1 - 1.0.1) <E2F6D8F1-689B-309B-ACE8-319010FA7781> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
        0x7fff8dfb1000 -     0x7fff8dfdaff7  com.apple.framework.Apple80211 (7.1.2 - 712.1) <B4CD34B3-D555-38D2-8FF8-E3C6A93B94EB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8e019000 -     0x7fff8e9a97a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8e9aa000 -     0x7fff8e9eafff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8e9eb000 -     0x7fff8ea2afff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8eb07000 -     0x7fff8ef39fef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8ef48000 -     0x7fff8ef53ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8ef54000 -     0x7fff8ef62fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8ef68000 -     0x7fff8ef6ffff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8ef76000 -     0x7fff8f07bfff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8f07c000 -     0x7fff8f081fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f082000 -     0x7fff8f08dfff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8f094000 -     0x7fff8f138fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f139000 -     0x7fff8f144ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8f149000 -     0x7fff8f1b1ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8f1c7000 -     0x7fff8f351ff7  com.apple.WebKit (7534.53 - 7534.53.11) <2969964C-2759-3407-9EBB-C1304A556755> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8f352000 -     0x7fff8f359fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <848F5267-C6B3-3591-AB27-B0176B04CCC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8f35a000 -     0x7fff8f3ecfff  com.apple.PDFKit (2.6.2 - 2.6.2) <4C8D80F6-09BB-3BD5-983B-A24FBEB5BCF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8f3ed000 -     0x7fff8f3eefff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8f3ef000 -     0x7fff8f3f6fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8f3f7000 -     0x7fff8f432fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8f433000 -     0x7fff8f51efff  com.apple.backup.framework (1.3.1 - 1.3.1) <C933E52C-5BA6-386D-9B6A-8F98D8142A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f51f000 -     0x7fff8f545ff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8f55d000 -     0x7fff8f5b0fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f5b1000 -     0x7fff8f5b7ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8f5b8000 -     0x7fff8f5b8fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8f5b9000 -     0x7fff8f6c5fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8f701000 -     0x7fff8f80efff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f814000 -     0x7fff8f85bff7  com.apple.CoreMedia (1.0 - 705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8f85c000 -     0x7fff8f896fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8f8c7000 -     0x7fff8f8d5ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8f8de000 -     0x7fff8f927ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8f928000 -     0x7fff8f93cff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8f93d000 -     0x7fff8f940fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8f9bb000 -     0x7fff8fabbfff  com.apple.QuickLookUIFramework (3.1 - 500.10) <ABD3BF58-DD33-31CA-AAE3-E0EE274C8B9C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8fc94000 -     0x7fff8fd2eff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8fd2f000 -     0x7fff8fd39ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8fd3a000 -     0x7fff8fdafff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/li

    behoppy wrote:
    Had this problem yesterday while syncing my iphone to PC. iTunes asked if I wanted to upgrade to iTunes 9 and iphone 3.1. I agreed. The sync failed saying it couldn't identify my iphone and then asked me to restore my iphone.
    I had to do a restore to get 3.1 loaded (first time I've had a problem with an update) but I did get it done .. then had to reload all my apps, audio, video with a 1+ hr sync.
    But it did works .. and no problems of any kind (and my email works just fine)
    Phil

  • Unrecognized selector ???

    I new to objective c and I am working through Aaron Hillegass Cocoa Programming for Mac OS X 3rd Edition.
    I am working in chapter 3 and I started to mess around with writing my own classes for testing purposes. I am writing a console app using the Foundation classes. My files are
    CardTest.m
    Card.h
    Card.m
    Deck.h
    Deck.m
    When I "build and go" I get the following message:
    [Session started at 2008-07-29 14:06:21 -0400.]
    2008-07-29 14:06:21.088 CardTest[6003:10b] * -[NSCFArray someNum]: unrecognized selector sent to instance 0x104b40
    2008-07-29 14:06:21.096 CardTest[6003:10b] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFArray someNum]: unrecognized selector sent to instance 0x104b40'
    2008-07-29 14:06:21.097 CardTest[6003:10b] Stack: (
    2502619467,
    2527531259,
    2502648650,
    2502641996,
    2502642194
    The Debugger has exited due to signal 5 (SIGTRAP).The Debugger has exited due to signal 5 (SIGTRAP).
    I was just playing around with methods but I can't get the someNum method to be called from my Deck class. Thanks in advance for any help.

    Here are my files
    CardTest.m
    #import <Foundation/Foundation.h>
    #import "Card.h"
    #import "Deck.h"
    int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    Deck *warDeck = [[Deck alloc] initDeck];
    int k = [warDeck someNum];
    //NSLog(@"Tester");
    [pool drain];
    return 0;
    Deck.h
    #import <Foundation/Foundation.h>
    @interface Deck : NSObject {
    NSMutableArray *myDeck;
    -(id)initDeck;
    -(int)someNum;
    @end
    Deck.m
    #import "Deck.h"
    #import "Card.h"
    @implementation Deck
    -(id)initDeck
    myDeck = [[NSMutableArray alloc] init];
    int i;
    int j;
    for (i=2; i<15; i++){
    for (j=1; j<5; j++){
    Card *myCard = [[Card alloc] setSuit:j setFace:i];
    [myDeck addObject:myCard];
    //NSLog(@"%@", myCard);
    //NSLog(@"%@", [myDeck objectAtIndex:(i-2)]);
    return myDeck;
    -(int)someNum
    return 8;
    @end

  • Enumerating NSDictionary causing an unrecognized selector problem..

    Hi All!
    I am really confused and trying to solve this problem since hours, but I have no clue at all..
    The code I am using works with one json-filled nsdictionary, but not with another..
    NSEnumerator *enumerator = [newDict objectEnumerator]
    terminates my app.. with [NSCFString objectEnumerator] but what the **** does this mean??
    thankx..
    2009-11-12 21:41:21.377 ViewPusher[1814:207] * -[NSCFString objectEnumerator]: unrecognized selector sent to instance 0x43348e0
    2009-11-12 21:41:21.377 ViewPusher[1814:207] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFString objectEnumerator]: unrecognized selector sent to instance 0x43348e0'
    2009-11-12 21:41:21.379 ViewPusher[1814:207] Stack: (
    30901339,
    2443654409,
    31283259,
    30852726,
    30705346,
    60688,
    70291,
    70137,
    647025,
    36015901,
    36019690,
    36020450,
    36022934,
    35682261,
    30685409,
    30682184,
    38991757,
    38991954,
    2957315,
    8968,
    8822
    )

    It means that what you think is an NSDictionary is actually an NSString.

  • SKProduct product.priceLocale unrecognized selector

    Hi,
    My Code hangs on one apple test device (iphone 3GS OS 3.0) but not on my iPad test device (3.2). Compiler Error:
    * -[NSCFString priceLocale]: unrecognized selector sent to instance 0x62258
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFString priceLocale]: unrecognized selector sent to instance 0x62258'
    why should priceLocal be an unrecognized selector?!!
    - (NSString * ) stringFromLocalPrice:(SKProduct *) product{
    NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
    [formatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
    [formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
    [formatter setLocale:product.priceLocale];
    NSString *str = [formatter stringFromNumber:product.price];
    [formatter release];
    return str;
    thanks for any help..

    sorry; i tested it again and it also does not work on the ipad and crashes with the same error.

  • AE 12.0 -[NSMenu menuID]: unrecognized selector...

    I think this is an old problem, but I'm wondering why it hasn't been fixed yet.
    While running AE, the Mac OS console is absolutely flooded with this error message:
    After Effects: -[NSMenu menuID]: unrecognized selector sent to instance 0x116915050
    Not sure if it's a problem but it doesn't seem right to me.  We are troubleshooting some freezing issues we're having but we're not sure it's related to AE or this in particular.

    I just tried running  After Effects CS5.app/Contents/After Effects and I still get the same error (plus some initialization messages).
    So I'm really unable to After Effects as a Native Process on OSX. On windows it was fast and easy. It is the .app folder thing that seems to mess everything.
    Does anybody have a clue, or maybe I'm better to ask on the Adobe Air forum ?

  • IPhone SDK: unrecognized selector

    I'm relatively new to Objective-C/iPhone SDK development. I have an issue that really seems to produce random (or at least nondeterministic) errors, all of which are "unrecognized selector" errors.
    I have a UITableViewController that is populated with table names from a MySQL database. When I select a table name, a second UITableViewController is created to display detailed data. I thought this was working just fine, but I discovered I have problems when I select a certain table name, (detailed results are displayed in second UITableViewController), go back, select the same table name, (...), go back, and select the same table name a third time. The Simulator explodes and gives me an error like:
    * -[UICGColor length]: unrecognized selector sent to instance 0x1050810
    Sometimes it's related to UICGColor, sometimes it's related to CALayerArray. Sometimes it doesn't produce any error at all and just terminates.
    What's also weird is that only some of the table names cause this to happen. Also, if I cycle through several table names (i.e., not select the same table over and over), the app is fine. I would tend to think that maybe something is wrong with my database or MySQL C API usage, but the fact that things are perfectly fine the first and second (and third and fourth and ... and nth for some tables) time baffles me. I'm not using any dynamic method calling either -- just straight
    [ object method: ] syntax, so I'm not sure how it suddenly can "lose" the selector reference that it was perfectly happy to use earlier. As far as I can tell, I'm releasing memory as necessary.
    Any clues why this seems to be so weird and unpredictable? I can provide source if it would help.

    Ugh. Problem solved. I was tampering with autorelease, and it got me into trouble. I had this:
    query = [ [ [ NSString alloc ] initWithFormat:@"...%@", [ [ tableView cellForRowAtIndexPath:indexPath ] text ] ] autorelease ];
    I thought that I should autorelease the "anonymous" object I created. It made sense at the time, but upon thinking about retain/release more closely, it's so clear now.

Maybe you are looking for