Images In Interface Builder

How do I Import them... And edit things like the application icon?

You have to add the images to your Xcode project. After adding the images to your project, open the nib file, and the images should appear in the nib file window when you click the Images tab.
Apple has an Icon Composer program that lets you create icons out of images. Icon Composer is part of the Xcode installation. You should find it in Developer/Applications/Utilities.
  Mac OS X (10.4)  

Similar Messages

  • Set background image in the Interface builder

    Hi,
    Is there a way to set a background image for a View controller through the Interface builder? I'm using story boards.
    If not please tell me how to do that programatically. I need to set this background image for all my UIs.
    Thanks

    Remember that the client is running from a browser. You need to have the file be available to the browser and that means having it be served by the web server. Place the image file in a directory available to the web server and map that directory to a virtual web server directory and specify it with a url relative to the web server root: /images/your_image.gif

  • Interface Builder refuses to see "@2x" image files

    I'm making some apps with support for all three major iOS platforms: iPhone&Co, iPhone4 and iPad. This support means, naturally, having larger-resolution images for the latter two platforms. Currently I'm making the apps universal, so the same app will run in all of them.
    Since most of the double-resolution images of the iPhone4 version of the app can be used as-is in the iPad version (only things like background images have to be made separately for all three types of platform due to differing screen resolutions; the rest can be done with simply laying out the elements appropriately in the iPad as compared to the iPhone4, using the same element images for both), it would be a huge waste of space to make separate images for the iPhone4 and the iPad, when these images would be completely identical. Thus it only makes sense to reuse the same "@2x" images of the iPhone4 on the iPad version of the app.
    This worked nicely for a while. However, at some point quite suddenly (I don't really know what happened), Interface Builder started to completely refuse to see any image files with a "@2x" in their name. It won't show them on the drop-down menu where you select an image (eg. for an UIImageView or UIButton), and if you write it manually, it will refuse to show it (only showing the question mark image symbolizing a missing image file). The image will show ok when running the app, but IB simply refuses to acknowledge the existence of such images. If I rename the image such that I remove the "@2x", then IB will accept it, but not if it has those characters.
    As said, IB did see the "@2x" images at some point, but for some reason now it doesn't. (This is a bit of a mystery because I don't remember this happening after any kind of SDK upgrade or anything.)
    This tells me that this is either 1) a bug in IB, or 2) intentional behavior, and the "@2x" images should not be "abused" in this way to create an iPad version of the app properly.
    If hypothesis 2 is correct, then what is the proper way of using the same images in both the iPhone4 and iPad versions of the app? Duplicating the image files would be an enormous waste of space (the apps are quite graphics-heavy).
    One "kludge" that comes to mind would be to create soft links for the images so that the iPad versions of the image files would just be soft links to the @2x iPhone4 images. However, I don't know if the bundling mechanism of the iPhone SDK supports soft links, or if it will simply make copies of the images (in which case each such image will end up being stored twice in the bundle).

    WarpRulez wrote:
    If I rename the image such that I remove the "@2x", then IB will accept it, but not if it has those characters.
    I guess I don't understand why you want a solution when you've found one already.
    Just use ".2x" or "-2x" or whatever.
    Report the bug, use your workaround and move on.

  • Interface Builder - Custom images not visible in Cocoa Simulator

    I'm very new to this, and just toying around with Interface Builder more than anything at this stage…
    Anyway, my problem… I've created some of my own images to place on buttons, etc. I've saved them in PNG format and dragged them into the Resources folder of my Xcode project, so they become available in Interface Builder's media library. I can drag them onto my window just fine, but when I test the UI with the 'Simulate Interface' command, the images disappear completely.
    Any ideas?

    This was changed in Interface Builder 3.0. Now, you have to click on the "Connections" tab in the object's Info panel. I think it is the 2nd one from the right. You will recognize it because you will see all your outlets. You click the little circle next to the outlet and drag a line over the user interface object to make the connection. Once you do that, there is a bug in Interface Builder that will blank out the info panel. You will have to select some other object to redisplay any information, then click back to your original object. The bindings panel has a similar set of bugs. Suffice to say, Interface Builder 3.0 is a work in progress.
    PS - to break a connection, click the little X button next to an outlet name.

  • Interface Builder refuses to see "@2x" image files - AGAIN in 5.0

    This was a problem in Xcode 4.0. Eventually, it was fixed.
    Now that Xcode 5.0 is out, it's back to the same problem. And, Xcode 5.0 asks you to convert your XIB files to the new format, so it can screw you up without you even knowing it!
    PROBLEM:
    The @2x images are NOT visible in interface builder. It cannot be selected from the list. It shows an unknown image (question mark) if you manually type it in...which renders layout design pointless if you need those @2x files.
    Many, many, many developers reuse the @2x images in the iPad xib files. Now, all of the images will either be shrunk or stretched from lower-res images...because it REMOVES the @2x extension for any images it finds in a xib file.
    SUGGESTIONS in the past:
    - Copy your @2x images to ~ipad images, because the framework will automatically use it.
    NO. I don't need to up the size of my app significantly with duplicate images.
    - Rename the @2x images to something else (e.g. -2x).
    NO. Because the framework will no longer auto load them for iPhone retina.
    - Just manually name them with the @2x and live with the broken image in IB.
    NO. Because most people actually care about the layout.
    - Create a separate iPad app.
    NO. Because customers shouldn't have to pay twice for the same app for 2 different devices.
    - Programmatically change the images to @2x if it's an iPad.
    UGH. This is what I've ended up doing, but how ridiculous is that?
    Anyone else found a way around this?

      NSString* path = [[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"png"];
              NSData* data = path ? [NSData dataWithContentsOfFile:path] : nil;
              UIImage* img = data ? [UIImage imageWithData:data] : nil;
      if( img ) [button setImage:img forState:UIControlStateNormal];
    OR
      NSString* path = [[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"png"];
      UIImage* img = [UIImage imageWithContentsOfFile:path];
      if( img ) [button setImage:img forState:UIControlStateNormal];
    Both should bypass auto-scaling.

  • Looking for simple sample of iphone apps without using Interface Builder

    I successfully went through the 'iphone app tutorial' and used Interface Builder, but now want to try creating apps without it.
    The UI Catalog sample is too complex, but didn't see anything that just had a view and a button or label.
    Ideally I want code that doesn't require any IB usage, but I can't tell if that is possible yet...
    Anyone have a link to an easy sample?
    Or has anyone created a test app themselves and wouldn't mind posting?
    I took a stab at creating one and posted it on the "101" forum, but it would be hard for somebody to try and figure out what I was attempting
    Thx for any links/___sbsstatic___/migration-images/migration-img-not-avail.png
    ps
    I really need a good book, especially "cookbook" style

    hey dear
    I have one solution of your problem
    just go to in iphone developer search for FAQ
    In faq their is one section how to use prohramming in this you can see
    the how to ceate label,button etc.
    after that simply add the view or remove theview.

  • I am new to xCode and SDK Disks. My Interface Builder will not work and 'quit's unexpecteldy'. What can I do? I really want to create an applicaiton. Thanks

    Hi, I am a new user to xCode and just recently downloaded a SDK Disk image and also an older version of xCode from the Apple Developer site. I opened the 'Interface Builder' for the first time and it worked. Next, when I tried to open it again (with and without the xCode 'Mainmenu.xib' attachment file from xCode) it kept showing the message "it quit unexpectedly".
    I need to create an application for a project I am working on. If anyone who can resolve my problem of why the Interface Builder is not working, that will be great.
    If you need additional details (like which versions etc.) please ask, for I am desperate to find an adequate solution to this problem.
    Thanks.

    If you need additional details (like which versions etc.) please ask, for I am desperate to find an adequate solution to this problem.
    Without intending any disrespect, if you had suspected these would be questions and if you're in a hurry for an answer, then why did you exclude the information?  And yes, knowing the Mac OS X version (preferably Mac OS X 10.5.8 or 10.6.7) , as well as the Xcode version might shed some light on this.  Might.  And I'll presume there's a specific reason you downloaded what I will assume is an Xcode3 version.
    Was this an existing Xcode project, or did you start with a new project here?  If it's an existing project, it could well have a corruption or an incompatibility.
    Initially, I'd probably start with a new project, and load in newly-copied source files.  On the off chance the project is corrupted.
    Failing that, I'd deinstall Xcode using the documented procedures, and would then reload it.  If there was an old version of Xcode around on the system, sometimes wonky stuff can happen with an installation.
    And FWIW, the Apple Developer Forums and the Apple mailing lists tend to see far more developer-related traffic than do these particular forums.  (There's an Xcode users' mailing list around which sees regular traffic, too.)

  • Interface Builder crash when i tried to open it

    hi
    when i tried to open interface builder, suddenly the app crash and i got this crash report, can somebody help me?
    ================================================================================ ========================
    Process:         Interface Builder [10503]
    Path:            /Developer/Applications/Interface Builder.app/Contents/MacOS/Interface Builder
    Identifier:      com.apple.InterfaceBuilder3
    Version:         3.2 (732)
    Build Info:      InterfaceBuilder-7320000~12
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [258]
    User ID:         501
    Date/Time:       2012-09-29 10:49:54.527 +0700
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          515966 sec
    Crashes Since Last Report:           16
    Per-App Interval Since Last Report:  25 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      6FFA1961-8B1D-7ABF-E1A1-56DE788DD9E0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _dispatch_get_concurrent_queue
      Referenced from: /Developer/Applications/Interface Builder.app/Contents/MacOS/Interface Builder
      Expected in: /usr/lib/libSystem.B.dylib
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff631a109d dyld_fatal_error + 1
    1   dyld                                    0x00007fff631a4048 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 139
    2   libdyld.dylib                           0x00007fff86d1e8ee dyld_stub_binder_ + 13
    3   ???                                     0x0000000100010008 0 + 4295032840
    4   com.apple.AppKit                        0x00007fff8e9f90fa -[NSApplication run] + 124
    5   com.apple.AppKit                        0x00007fff8e99dcb6 NSApplicationMain + 869
    6   com.apple.InterfaceBuilder3             0x00000001000016a5 0x100000000 + 5797
    7   com.apple.InterfaceBuilder3             0x0000000100001634 0x100000000 + 5684
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8e3506d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8dd42eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8dd42cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8dd2d171 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8e350d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff87526dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff875269ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8e3506d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8dd42eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8dd42cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8dd2d171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8e3506d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8dd42eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8dd42cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8dd2d171 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000101431930  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff63210060  rsi: 0x0000000000000000  rbp: 0x00007fff5fbff880  rsp: 0x00007fff5fbff868
       r8: 0x00007fff631bca14   r9: 0x0000000000000010  r10: 0x00007fff5fbff734  r11: 0x00007fff63210060
      r12: 0x000000010061ad80  r13: 0x00007fff87c05240  r14: 0x00007fff63210060  r15: 0x000000010142b080
      rip: 0x00007fff631a109d  rfl: 0x0000000000000246  cr2: 0x00007fff631cc470
    Logical CPU: 1
    Binary Images:
           0x100000000 -        0x10000fff7  com.apple.InterfaceBuilder3 (3.2 - 732) <233C96A2-5542-C1B3-6CBA-A13A50EFF85E> /Developer/Applications/Interface Builder.app/Contents/MacOS/Interface Builder
           0x10001a000 -        0x100086fff  com.apple.DevToolsKit (1.1 - 47) <CFC93818-B613-1180-3E65-2C492E02BEB7> /Developer/Library/PrivateFrameworks/DevToolsKit.framework/Versions/A/DevToolsK it
           0x1000c5000 -        0x1000f0fff  com.apple.DevToolsFoundation (3.1 - 1607) <DDEF8A58-9E6B-A00D-3D4C-A6F7A71B141F> /Developer/Library/PrivateFrameworks/DevToolsFoundation.framework/Versions/A/De vToolsFoundation
           0x100110000 -        0x1003b0fff  com.apple.InterfaceBuilderKit (3.2 - 732) <DC4E6754-4019-AD8A-57BD-1A253259A413> /Developer/Library/Frameworks/InterfaceBuilderKit.framework/Versions/A/Interfac eBuilderKit
           0x1004f3000 -        0x1004fcfff  com.apple.Xcode.DevToolsRemoteClient (5.1 - 1610) <FFDE3E13-ECD6-25E7-2B4B-33A3B71BF359> /Developer/Library/PrivateFrameworks/DevToolsRemoteClient.framework/Versions/A/ DevToolsRemoteClient
           0x100507000 -        0x10054bff7  com.apple.DocSetAccess (2.1 - 1602) <C30072B8-D98F-7E6D-5CCB-9C66009DDB7B> /Developer/Library/PrivateFrameworks/DocSetAccess.framework/Versions/A/DocSetAc cess
        0x7fff631a0000 -     0x7fff631d493f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff85a73000 -     0x7fff85be7fff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff85be8000 -     0x7fff85d83fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff85d84000 -     0x7fff85da5fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8665b000 -     0x7fff866b4fff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff866b5000 -     0x7fff866c0fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff866fc000 -     0x7fff86710fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86711000 -     0x7fff8674efe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff867f8000 -     0x7fff86813ff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <45E922F9-E5F5-3026-90BA-C1F5F8451C9B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff86814000 -     0x7fff86820fff  com.apple.CrashReporterSupport (10.8.2 - 414.3) <B1A904D2-1944-39AD-9F43-F589CEE3FCC3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff86821000 -     0x7fff86822ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff86823000 -     0x7fff8682afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8682b000 -     0x7fff868dcfff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8693c000 -     0x7fff86953fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff86959000 -     0x7fff869a4fff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff869b1000 -     0x7fff86aaffff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff86ad8000 -     0x7fff86ae0ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86af8000 -     0x7fff86b07ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff86b63000 -     0x7fff86b94ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff86cbe000 -     0x7fff86cc4fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff86cc9000 -     0x7fff86ccdfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff86cce000 -     0x7fff86d1dff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff86d1e000 -     0x7fff86d21ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff86d22000 -     0x7fff86d6ffff  com.apple.CoreMediaIO (301.0 - 4147) <61E348A5-1F9E-3390-9613-3EACE40DBD8C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff86d70000 -     0x7fff86deeff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86def000 -     0x7fff86ef1fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff86f08000 -     0x7fff86f14fff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff86f30000 -     0x7fff86f45fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86f46000 -     0x7fff86f70ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff86f71000 -     0x7fff8706efff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8706f000 -     0x7fff8707eff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8707f000 -     0x7fff8708aff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8708b000 -     0x7fff870caff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff870cb000 -     0x7fff8721cfff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8721d000 -     0x7fff874b7ff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff874b8000 -     0x7fff87521fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff87522000 -     0x7fff87537ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff87538000 -     0x7fff87557ff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8768d000 -     0x7fff8775fff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff87775000 -     0x7fff87832ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87833000 -     0x7fff87877fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff87878000 -     0x7fff87895fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87896000 -     0x7fff878a9ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff878aa000 -     0x7fff878f5ff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff878f6000 -     0x7fff87901ff7  com.apple.aps.framework (3.0 - 3.0) <11E1A5D1-F5E5-3228-8B6F-77EB36B5C248> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87902000 -     0x7fff87a1bff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff87a1c000 -     0x7fff87a1cffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87a1d000 -     0x7fff87a1dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff87a1e000 -     0x7fff87a20ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff87a62000 -     0x7fff87a75ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87a76000 -     0x7fff87a76fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff87a80000 -     0x7fff87aa8fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff87b62000 -     0x7fff87b9dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87b9e000 -     0x7fff87bfbff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff87bfc000 -     0x7fff87bfcfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff87bff000 -     0x7fff87d1792f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff87d18000 -     0x7fff87d64ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff87db7000 -     0x7fff87dc4fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff87dc5000 -     0x7fff87de7ff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff87de8000 -     0x7fff87dfefff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff87dff000 -     0x7fff87e47fff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff883ae000 -     0x7fff8867efff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff888f4000 -     0x7fff888fbfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff888fc000 -     0x7fff88958ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff88959000 -     0x7fff889dbfff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff889dc000 -     0x7fff88a16fff  com.apple.framework.internetaccounts (2.1 - 210) <0AB62FFA-42C8-3433-9C23-7D1AB411348F> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff88a17000 -     0x7fff88a4ffff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff88a50000 -     0x7fff88cf4fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff88cf5000 -     0x7fff88d5dfff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff88d5e000 -     0x7fff88d5efff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88d5f000 -     0x7fff88d62fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff88e13000 -     0x7fff88f10ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff88f11000 -     0x7fff88f11fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8914a000 -     0x7fff89152fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff89153000 -     0x7fff891a9ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff891aa000 -     0x7fff891cbff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff891cc000 -     0x7fff891d6fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff891e8000 -     0x7fff891f3fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff891f4000 -     0x7fff894a2fff  com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff894a3000 -     0x7fff894a7ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff895d2000 -     0x7fff895e0fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff895e1000 -     0x7fff89651fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff89850000 -     0x7fff89855fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff89856000 -     0x7fff89856fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff89857000 -     0x7fff89ad7ff7  com.apple.AOSKit (1.05 - 151) <A34E8584-797C-318F-9E25-937A710C68AB> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89b02000 -     0x7fff89bf3ff7  com.apple.PubSub (1.0.5 - 65.32) <A53D3D5D-85DF-3CFC-94DF-FB05D6FEC34A> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff89bf4000 -     0x7fff89c61fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff89c62000 -     0x7fff89c62fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89c63000 -     0x7fff89e98ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff89e99000 -     0x7fff89ec7ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff89ec8000 -     0x7fff89ed2fff  com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff89f1b000 -     0x7fff89f22fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff89f23000 -     0x7fff8a23aff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8a347000 -     0x7fff8a3d4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a3d5000 -     0x7fff8a4f5fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a4f6000 -     0x7fff8a4fafff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8a4fb000 -     0x7fff8a4fdfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8a4ff000 -     0x7fff8a516fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8a517000 -     0x7fff8a56eff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8a56f000 -     0x7fff8a649ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a64a000 -     0x7fff8a73ffff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8a745000 -     0x7fff8a770fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8a771000 -     0x7fff8ab8efff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8ab8f000 -     0x7fff8ac29fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8ac2a000 -     0x7fff8ac4afff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8ac4e000 -     0x7fff8ac9fff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8aca0000 -     0x7fff8ad3afff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8adea000 -     0x7fff8adebff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff8ae15000 -     0x7fff8b0d8ff7  com.apple.AddressBook.framework (7.1 - 1167) <92EF9CE4-A42B-3D30-8CA2-79C0A66BB4CE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8b11e000 -     0x7fff8b11ffff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8b120000 -     0x7fff8b121fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8b21c000 -     0x7fff8b276fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8b277000 -     0x7fff8b2ceff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b30a000 -     0x7fff8b30cfff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8b562000 -     0x7fff8b56fff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8b66b000 -     0x7fff8b86bfff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
        0x7fff8c86c000 -     0x7fff8c893fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8c894000 -     0x7fff8c8aefff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c94f000 -     0x7fff8c9d9ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <B8911FE0-5F6B-3244-BF7B-F2BFC50A7C6F> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8c9da000 -     0x7fff8ca9fff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8caa0000 -     0x7fff8ce97fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8ce98000 -     0x7fff8cea1fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8d7d2000 -     0x7fff8d7d5fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8d7d6000 -     0x7fff8d7fbff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff8d843000 -     0x7fff8d845fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8d8af000 -     0x7fff8d8e5fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8d8e6000 -     0x7fff8d8f4ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8d8f5000 -     0x7fff8d9f7fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8d9f8000 -     0x7fff8da54fff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8daab000 -     0x7fff8dab1fff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8dab2000 -     0x7fff8dac0ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8dac1000 -     0x7fff8dae8ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8dae9000 -     0x7fff8dafbff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8dafc000 -     0x7fff8dc6dff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8dcc2000 -     0x7fff8dcc3fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8dcc4000 -     0x7fff8dcd0ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8dcd1000 -     0x7fff8dcf0ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8dcf4000 -     0x7fff8dd2afff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8dd2c000 -     0x7fff8ddf8fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8ddf9000 -     0x7fff8de48ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8de7a000 -     0x7fff8de7bff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff8de7c000 -     0x7fff8de7cfff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8de7d000 -     0x7fff8de91fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8de92000 -     0x7fff8de93ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8de94000 -     0x7fff8de9aff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8de9b000 -     0x7fff8df03ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8df04000 -     0x7fff8df09fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8df0a000 -     0x7fff8df17fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8e071000 -     0x7fff8e077fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8e31a000 -     0x7fff8e31afff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8e31b000 -     0x7fff8e33dff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e33e000 -     0x7fff8e359ff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8e35a000 -     0x7fff8e35afff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8e391000 -     0x7fff8e395fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8e396000 -     0x7fff8e3d9fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e3da000 -     0x7fff8e3defff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8e3df000 -     0x7fff8e434ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e435000 -     0x7fff8e439ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8e43a000 -     0x7fff8e5c0fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8e5c1000 -     0x7fff8e5d2ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8e5d3000 -     0x7fff8e653ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8e654000 -     0x7fff8e802fff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8e805000 -     0x7fff8e8a3ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8e8a7000 -     0x7fff8e8acfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8e8ad000 -     0x7fff8f4daff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8f4db000 -     0x7fff8f5e6fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8f5e7000 -     0x7fff8f842ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8fbd7000 -     0x7fff8fbdafff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8fbdb000 -     0x7fff9056bc67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff9056c000 -     0x7fff905c9fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff906e4000 -     0x7fff9071bff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff9071c000 -     0x7fff90b58fff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff90b5b000 -     0x7fff90d44fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90d45000 -     0x7fff90dd6fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff90dd7000 -     0x7fff9157ffff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff91580000 -     0x7fff91580fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff916ec000 -     0x7fff91a1cff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff91a1f000 -     0x7fff91a21fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff91a30000 -     0x7fff91a6afff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff91a6b000 -     0x7fff91a9ffff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff91b52000 -     0x7fff91b95ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff91ba3000 -     0x7fff91bb1fff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff91bb2000 -     0x7fff91c4fff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff91c50000 -     0x7fff91ca6fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff91ca7000 -     0x7fff91d14ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff91d15000 -     0x7fff91d41fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff91dca000 -     0x7fff91e70ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff91e8d000 -     0x7fff91fa7fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff91fb9000 -     0x7fff91fbbff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff91fe9000 -     0x7fff92033ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff92034000 -     0x7fff92178fef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff92179000 -     0x7fff921fafff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9221d000 -     0x7fff92579fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9257a000 -     0x7fff925a5fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff925f7000 -     0x7fff929f0ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 355
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=190.0M resident=140.4M(74%) swapped_out_or_unallocated=49.6M(26%)
    Writable regions: Total=32.7M written=1760K(5%) resident=1968K(6%) swapped_out=0K(0%) unallocated=30.7M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    MALLOC                             21.6M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              10.0M
    VM_ALLOCATE                          28K
    __DATA                             16.7M
    __IMAGE                             528K
    __LINKEDIT                         54.3M
    __TEXT                            135.7M
    __UNICODE                           544K
    mapped file                        27.1M
    shared memory                       308K
    ===========                      =======
    TOTAL                             323.1M
    Model: MacBookPro7,1, BootROM MBP71.0039.B0E, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Huawei Modem, PPP (PPPSerial), ppp0
    Serial ATA Device: TOSHIBA MK2555GSXF, 250.06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24600000 / 2
    USB Device: USB 2.0 Hub, 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0101, 0x26400000 / 3
    USB Device: USB Optical Mouse, 0x046d  (Logitech Inc.), 0xc05a, 0x26410000 / 5
    USB Device: HUAWEI Mobile, 0x12d1  (Huawei Technologies Co., Ltd.), 0x140c, 0x26420000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06610000 / 7
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x06500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x06300000 / 2
    ================================================================================ =======================

    I am also getting this error after installing interface builder 3.6.2 on mountial lion.  My xcode 4.6 seems to still run.  However, I am trying to get access to Interface Builder 3.6.2 so I can create and edit nib files for building futureBASIC applications.
    Thomas
    my crash report is just as long as yours...

  • [HELP] * The application Interface Builder quit unexpectedly

    Process: Interface Builder [533]
    Path: /Developer/Applications/Interface Builder.app/Contents/MacOS/Interface Builder
    Identifier: com.apple.InterfaceBuilder3
    Version: 3.1.2 (677)
    Build Info: InterfaceBuilder-6770000~1
    Code Type: X86 (Native)
    Parent Process: launchd [113]
    Date/Time: 2009-05-03 08:36:21.061 -0700
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000008
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ??? 0x1f420636 0 + 524420662
    1 ??? 0x1f3e5a18 0 + 524179992
    2 ??? 0x1f3e70fe 0 + 524185854
    3 ??? 0x1f3c2276 0 + 524034678
    4 ??? 0x1f20d05d 0 + 522244189
    5 ??? 0x05325948 0 + 87185736
    6 ??? 0x0532523e 0 + 87183934
    7 ??? 0x00caece7 0 + 13298919
    8 ??? 0x05e85023 0 + 99110947
    9 ??? 0x05e84135 0 + 99107125
    10 ??? 0x05e50997 0 + 98896279
    11 ??? 0x05e51aaa 0 + 98900650
    12 ??? 0x017ea580 0 + 25077120
    13 ??? 0x017ec00d 0 + 25083917
    14 ??? 0x017ec489 0 + 25085065
    15 ??? 0x017ea580 0 + 25077120
    16 ??? 0x017e9ef5 0 + 25075445
    17 ??? 0x00aa4ef1 0 + 11161329
    18 ??? 0x00aa63a4 0 + 11166628
    19 ??? 0x017ea580 0 + 25077120
    20 ??? 0x017e9ef5 0 + 25075445
    21 ??? 0x00aa6080 0 + 11165824
    22 ??? 0x00aa4e16 0 + 11161110
    23 ??? 0x002660e4 0 + 2515172
    24 ??? 0x017ea580 0 + 25077120
    25 ??? 0x017e9ef5 0 + 25075445
    26 ??? 0x00a9f1ba 0 + 11137466
    27 ??? 0x00aa3cbb 0 + 11156667
    28 ??? 0x017ea580 0 + 25077120
    29 ??? 0x017ec00d 0 + 25083917
    30 ??? 0x017ec489 0 + 25085065
    31 ??? 0x017ea580 0 + 25077120
    32 ??? 0x017e9ef5 0 + 25075445
    33 ??? 0x00a9e042 0 + 11132994
    34 ??? 0x017ea580 0 + 25077120
    35 ??? 0x017e9ef5 0 + 25075445
    36 ??? 0x00a9d61d 0 + 11130397
    37 ??? 0x00a9cfe8 0 + 11128808
    38 ??? 0x00c84455 0 + 13124693
    39 ??? 0x0035345c 0 + 3486812
    40 ??? 0x00265d58 0 + 2514264
    41 ??? 0x0026599e 0 + 2513310
    42 ??? 0x0026514e 0 + 2511182
    43 ??? 0x0026489f 0 + 2508959
    44 ??? 0x0026b5e3 0 + 2536931
    45 ??? 0x0026b519 0 + 2536729
    46 ??? 0x000023db 0 + 9179
    47 ??? 0x00acf3a3 0 + 11334563
    48 ??? 0x00a9c8a4 0 + 11126948
    49 ??? 0x00004eca 0 + 20170
    Thread 1:
    0 ??? 0x005241c6 0 + 5390790
    1 ??? 0x0052b9bc 0 + 5421500
    2 ??? 0x008de0ae 0 + 9298094
    3 ??? 0x008decd8 0 + 9301208
    4 ??? 0x030a05dc 0 + 50988508
    5 ??? 0x030a0464 0 + 50988132
    6 ??? 0x00555095 0 + 5591189
    7 ??? 0x00554f52 0 + 5590866
    Thread 2:
    0 ??? 0x00524226 0 + 5390886
    1 ??? 0x005561ef 0 + 5595631
    2 ??? 0x00557a73 0 + 5601907
    3 ??? 0x0182575c 0 + 25319260
    4 ??? 0x01825570 0 + 25318768
    5 ??? 0x018254d5 0 + 25318613
    6 ??? 0x1c4e21a2 0 + 474882466
    7 ??? 0x1c4e1959 0 + 474880345
    8 ??? 0x017df7ed 0 + 25032685
    9 ??? 0x017df394 0 + 25031572
    10 ??? 0x00555095 0 + 5591189
    11 ??? 0x00554f52 0 + 5590866
    Thread 3:
    0 ??? 0x00554906 0 + 5589254
    1 ??? 0x00555095 0 + 5591189
    2 ??? 0x00554f52 0 + 5590866
    Thread 4:
    0 ??? 0x005241c6 0 + 5390790
    1 ??? 0x0052b9bc 0 + 5421500
    2 ??? 0x008de0ae 0 + 9298094
    3 ??? 0x008decd8 0 + 9301208
    4 ??? 0x041a3052 0 + 68825170
    5 ??? 0x00555095 0 + 5591189
    6 ??? 0x00554f52 0 + 5590866
    Thread 5:
    0 ??? 0x005241c6 0 + 5390790
    1 ??? 0x0052b9bc 0 + 5421500
    2 ??? 0x008de0ae 0 + 9298094
    3 ??? 0x008ded34 0 + 9301300
    4 ??? 0x027d14c6 0 + 41751750
    5 ??? 0x017df7ed 0 + 25032685
    6 ??? 0x017df394 0 + 25031572
    7 ??? 0x00555095 0 + 5591189
    8 ??? 0x00554f52 0 + 5590866
    Thread 6:
    0 ??? 0x0052b3ae 0 + 5419950
    1 ??? 0x00555d0d 0 + 5594381
    2 ??? 0x0545bb32 0 + 88455986
    3 ??? 0x00555095 0 + 5591189
    4 ??? 0x00554f52 0 + 5590866
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x1f3e5a04 ecx: 0x00000012 edx: 0x00000000
    edi: 0xbfffd67c esi: 0x070f6be0 ebp: 0xbfffd578 esp: 0xbfffd578
    ss: 0x0000001f efl: 0x00010202 eip: 0x1f420636 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000008
    Binary Images:
    0x8fe00000 - 0x8fe298a3 dyld 0.0 (???) <d1092af4e89e77aa121dd5fb0c855cd9> /usr/lib/dyld
    console:
    5/3/09 8:36:25 AM [0x0-0x11011].com.apple.Xcode[206] Xcode(206,0xb0103000) malloc: free_garbage: garbage ptr = 0xa19e220, has non-zero refcount = 1
    5/3/09 8:37:36 AM [0x0-0x11011].com.apple.Xcode[206] Xcode(206,0xb0103000) malloc: free_garbage: garbage ptr = 0x9768920, has non-zero refcount = 1
    5/3/09 8:37:36 AM [0x0-0x11011].com.apple.Xcode[206] Xcode(206,0xb0103000) malloc: free_garbage: garbage ptr = 0x97e8790, has non-zero refcount = 1
    5/3/09 8:37:37 AM [0x0-0x65065].com.apple.InterfaceBuilder3[551] Couldn't open shared capabilities memory GSCapabilities (No such file or directory)
    5/3/09 8:37:38 AM com.apple.launchd[113] ([0x0-0x65065].com.apple.InterfaceBuilder3[551]) Exited abnormally: Bus error
    I try to fix it by http://discussions.apple.com/thread.jspa?threadID=1850735&tstart=0

    zoujinhe wrote:
    thanks.
    let me try this(Mac OS in home, I at office now).
    but CHESS had same problem, is my system problem?
    Ni Hao
    Take note of the permissions repairs and if those are extensive, it may indicate a general health issue. Repairing permissions should help if there are many files in need of repair. Try the repairs first - step-by-step.
    Be sure that your OS install is 'normal', meaning do not move and/or rename basic folders/directories created when the OS is first installed.
    Shouldn't you be on holiday?

  • Interface Builder does not open when I click Mainwindow.xib file on Monotouch.

    I did a lot research about it, What the most of view say it is because of the iOS SDK, not because of the MonoTouch, they say that iOS SDK provides the Interface Builder? Any suggestions? Thanks in advance. iOS SDK Version 4.3.

    Does Monotouch work within Xcode? I'm not sure what it is. If so then Interface Builder does not open a separate window in Xcode 4. When you first go to your .xib, you must select your "Window" to see the window. Otherwise you get an empty grid. Here's an image with the "Window" selected. I have it set for Mac applications not iOS but what you have should look similar.

  • Interface Builder SubClassing

    I recently installed 10.5 and Xcode 3.0. When I went to start my first Cocca app I discovered that when I opened the main menu nib with IB the panel that displays instances and classes etc. did not have a bar for selecting:
    instances classes images sounds nib.
    Is this a new way of doing things or is there something I needed to install or set?
    How do I subclass, and create object files?

    No, you don't need to install something else. Interface Builder 3 is just made like that.
    You can no more subclass a class directly in IB, however you can still build the basis of your class.
    You have to go in the Identity Inspector (cmd + alt + 6) of your object, you can set the object's class name, you can also set its actions (with the type of the argument) and set its outlet.
    The you generate class files using File --> Write Class Files…
    Now, IB is completely bound to Xcode, when you use IB, you usually have Xcode opened next to it. If you add an outlet or an action directly in a class that IB knows it will update its data in IB on the fly, so it's better from then on to use Xcode to modify class for which the class files are already created.
    NB : you need to set the superclass in Xcode, you can't do it in IB.

  • Interface builder freeze on compilation

    I have never been able to get iPhone applications compiling on my Macbook Air.. Now I decided that I want to find out why.. So I have spent the most of the day trying some of the fixes suggested on the net. But nothing works.
    I am trying to compile "WhichWayIsUp" demo, but once the .xib file starts compiling the process just hangs there.
    Also if I try to open the .xib in Interface builder, interface builder gives me the spinning ball
    I hope that some of you experts out there can help me out?
    My crash log looks like this:
    Process: Interface Builder Cocoa Touch Tool [1065]
    Path: /Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Interface Builder/Plug-ins/IBCocoaTouchPlugin.ibplugin/Contents/Resources/Interface Builder Cocoa Touch Tool
    Identifier: Interface Builder Cocoa Touch Tool
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: ibtool [1064]
    Date/Time: 2009-03-22 18:46:46.399 +0100
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 dyld 0x8fe18c02 misalignedstackerror + 0
    1 libstdc++.6.dylib 0x0023c3e3 std::Rb_tree_insert_andrebalance(bool, std::Rb_tree_nodebase*, std::Rb_tree_nodebase*, std::Rb_tree_nodebase&) + 243 (streambuf_iterator.h:174)
    2 libGLProgrammability.dylib 0x010100a2 PPParserGetErrorString + 3311330
    3 libGLProgrammability.dylib 0x01010169 PPParserGetErrorString + 3311529
    4 libGLProgrammability.dylib 0x0100f86f PPParserGetErrorString + 3309231
    5 libGLProgrammability.dylib 0x010939f3 0xa13000 + 6818291
    6 dyld 0x8fe12f36 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 246
    7 dyld 0x8fe0e7e3 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 307
    8 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    9 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    10 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    11 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    12 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    13 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    14 dyld 0x8fe0e775 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int) + 197
    15 dyld 0x8fe0e8c9 ImageLoader::runInitializers(ImageLoader::LinkContext const&) + 57
    16 dyld 0x8fe04102 dyld::initializeMainExecutable() + 146
    17 dyld 0x8fe07bcf dyld::main(machheader const*, unsigned long, int, char const**, char const**, char const**) + 3087
    18 dyld 0x8fe01872 dyldbootstrap::start(mach_header const*, int, char const**, long) + 818
    19 dyld 0x8fe01037 dyldstart + 39
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x002ca95b ebx: 0x0100f84b ecx: 0x00000000 edx: 0x01102758
    edi: 0x01102780 esi: 0x011027a0 ebp: 0xbfffdb5c esp: 0xbfffdaf4
    ss: 0x0000001f efl: 0x00010286 eip: 0x8fe18c02 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0023c2f0
    Binary Images:
    0x1000 - 0xfff2 +Interface Builder Cocoa Touch Tool ??? (???) <22d58cef925ccc34c54ff34bc47e973b> /Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Interface Builder/Plug-ins/IBCocoaTouchPlugin.ibplugin/Contents/Resources/Interface Builder Cocoa Touch Tool
    0x18000 - 0x1fffd +libgcc_s.1.dylib ??? (???) /usr/local/lib/libgcc_s.1.dylib
    0x3f000 - 0x6bfff com.apple.SystemConfiguration 1.9.5 (1.9.5) <12ef2c263a3958046a4cfd0ab49a95f3> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System Configuration
    0x85000 - 0x88ffc +libGFXShared.dylib ??? (???) <2acf8511245e6393dbc7a8107d263584> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0xa7000 - 0xcbfff +libxslt.1.dylib ??? (???) <ec3ae0462040d333effa987384d1b538> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/usr/lib/libxslt.1.dylib
    0x112000 - 0x1f3ff7 +libxml2.2.dylib ??? (???) <18f014ed14a8281eedb11b16dbcb2313> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/usr/lib/libxml2.2.dylib
    0x224000 - 0x2b4fe5 libstdc+.6.dylib ??? (???) /usr/local/lib/libstdc++.6.dylib
    0x735000 - 0x770ff9 +libGLImage.dylib ??? (???) <69d908a44ab97e1913cb0b20ab5b99e8> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x856000 - 0x8c7ff1 +WebKit ??? (???) <d2434c38b3802120b0e0ebcc2f283838> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x92b000 - 0x9a7feb com.apple.audio.CoreAudio 3.2.0 (3.2) <53fe4cee1a8175ea9644c845bb98456d> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0xa00000 - 0xa0aff3 +CoreVideo ??? (???) <327d75ff103c5aeaeeceec2aa0a8e49c> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/CoreVideo.framework/CoreVideo
    0xa13000 - 0x1098f32 +libGLProgrammability.dylib ??? (???) <9046d2abbaec066c06040423e27b6915> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x30875000 - 0x30887fff +AppSupport ??? (???) <bef8b343070b5329c2f530d4218aad89> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x30a45000 - 0x30ca8fe6 +UIKit ??? (???) <f4c65f1861a5a6daeaebde942e77b55e> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/UIKit.framework/UIKit
    0x30ff3000 - 0x311f8fff com.apple.CoreGraphics 1.359.13 (???) <abf63e270c1801e02fb6954ab6cf5e82> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x31270000 - 0x31285fff +OpenGLES ??? (???) <27b097ed65d3da5eaa09fa8ddfbf0c77> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x312b2000 - 0x31375ff3 +JavaScriptCore ??? (???) <2c056913644b3a5dc4993cd51837dab0> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x31562000 - 0x3156bffd +GraphicsServices ??? (???) <719d0400bacbca45f43f1568285b4c57> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServi ces
    0x315d7000 - 0x31692ff7 +ImageIO ??? (???) <0889c4b9b2273a815bcb82b08dbf4977> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/ImageIO.framework/ImageIO
    0x31ad4000 - 0x31aecfff +AddressBook ??? (???) <6c8f6e0977ea207a4befa61ba1330f68> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/AddressBook.framework/AddressBook
    0x31dcb000 - 0x31e3ffef +QuartzCore ??? (???) <06cf7e879bfb27a7b5ce0f6c49755c12> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x325ec000 - 0x32be4fff +WebCore ??? (???) <c5060b1d50c2716c8043b96ec31002b5> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x33d10000 - 0x33d18ffc +SpringBoardServices ??? (???) <62eed9174adb76974fef4361af5dea2e> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoar dServices
    0x34882000 - 0x3499efef +AudioToolbox ??? (???) <6d0ef663642ce3dfeb93e221a05cd3dc> /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .1.sdk/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x902fd000 - 0x9030bffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x9034c000 - 0x9051aff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90604000 - 0x90604ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90919000 - 0x90a51ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x90a91000 - 0x90b10ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90c4d000 - 0x90c96fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90ca1000 - 0x90cccfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x919f9000 - 0x91a28fe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91ad6000 - 0x91aecfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92d5f000 - 0x92de6ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x944b1000 - 0x945e4fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x947b0000 - 0x9486afe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94927000 - 0x94a8eff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x94c8e000 - 0x94c95ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x94c96000 - 0x94f11fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x953b9000 - 0x95444fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95d43000 - 0x95d4bfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95dce000 - 0x95eaefff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x9610c000 - 0x96198ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96704000 - 0x969deff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96b5c000 - 0x96bf9fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97290000 - 0x97294fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    The general approach at this time is to ask if you've checked for any problematic fonts (all languages) with Apple's Font Book (look in the Applications folder). Find and remove all duplicates also.
    Start there to be sure all fonts that are in play come out with a clean bill of health.
    Don't hesisate to perform wholesale deletion of old and/or little used fonts - be skeptical of anything that has come from Office 2008, including those related to an Equation Editor installation.
    By all means be sure any 3rd party apps are Snow Leopard compatible.
    You can help to focus the problem by creating another user account named testUser and seeing if the problem still occurs there - this will help to identify if the issue is particular to your original account or system wide.
    You can try deleting these plist files (~yourUserName/Library/Preferences):
    • com.apple.InterfaceBuilder3.LSSharedFileList.plist
    • com.apple.InterfaceBuilder3.plist
    If you still have issues, consider asking again on the developer forums...
    http://discussions.apple.com/forum.jspa?forumID=727&start=0
    Good luck in any case.

  • Interface Builder - Locking Properties

    Good morning all,
    I have some question about the feature to lock properties in Interface builder. I am using Interface Builder 3.0 (629) and I am not sure if the behavior I am seeing is a bug or if it is just some small details I am unaware of. Here is my little annoying problem:
    Whenever I open some of my nib files ( they are now all saved as NIB 3.0) some of them instantly are flagged as something changed, and some don't.
    1: I can't figure out why Interface Builder thinks that. The only thing I can think of, is that I might have created the Nib file on a primary monitor ( I am developing a Macbook pro) and sometimes I might have created the Nib file on a second monitor. Is it because Interface Builder is relocating the Nib file on the 2nd monitor ( which has the Dock) that he thinks something has changed??
    2: Also, when I am trying to lock the nib files using Non-Localizable properties, on some NSTextField it still does not let me edit the text.
    3: Whenever some locking is applied, I have the same issue as in (1), Whenever I open up a locked Nib file, I see the big LOCK image flashing. ( I think interface builder is trying to do something) And on some NIB file it is fine.
    I also noticed that when my Nib files were saved as Nib 2.0 I could not save the deployment Target OS.
    Thanks for confirming my doubt or explaining these undocumented behavior if they are not!
    Simon

    Nothing beyond what Apple's already released or said in the press releases is known, or can be discussed, by anyone here. Sorry, but we'll all have to wait and see.
    As to individuals writing their own apps, again, we'll have to wait and see, but there's no indication that Apple will support this anytime in the foreseeable future. Their emphasis is on providing apps that won't totally screw up an iPhone, so therefore I'd I doubt strongly that Apple's going to want to support iPhone on which any of us can install anything we happen to cook up.
    Regards.

  • Interface Builder w/ Xcode folder refs

    when i set up xcode with folder refs interface builder does not see my images in the dropdown list. i actually have to type out the path and ib will show a broken image. is there anyway to fix this?

    Note that *AppleScript Studio* has been deprecated in Snow Leopard - AppleScriptObjC is the new framework. You can still edit Studio projects, but the project templates have been removed and you will need to enable the AppleScript palette - see the release notes.
    Assigning a handler (IBaction) to a button (or any object) is pretty easy - create a handler in your script that takes a single parameter and name it with a trailing underscore (the naming conventions are also in the release notes), for example:on doButtonStuff_(sender) it will appear in *Interface Builder* under the *Connections Inspector* for your application delegate - from there you can make a connection from your object to the handler. MacScripter has some tutorials for AppleScriptObjC in Xcode, and I also have a button example project (it's not much of a tutorial, though).

  • Change GUI with interface builder

    i am not a real geek - but i have just written a little app with applescript and i have used interface builder to visaulize it!!!
    my question is, how can i get my custom images to be used by the app, rather than the default "brushed" look?
    thanks,
    max

    Ashish,
    It's a known problem with IB. For now, you are better off by creating the table view in code. IB is still buggy.

Maybe you are looking for

  • How do I copy an app from my iPhone to my desktop iTunes?

    iTunes tells me there's an update for my iPhone. I click on update. It tell me that there are apps on my iPhone that are not on my computer, and that I should copy them to the computer before updating.  I sync the iPhone, and then get the same messag

  • Itunes crashes when Podcasts begin downloading

    Every time I start up itunes it crashes after the podcast begin downloading.  I have to open task manager to shut down itunes.  I have tried creating a different user account, it seems to be a system wide issue.  I have tried the suggestions on the a

  • 27" iMac very sluggish after recent software/firmware update

    I bought my 27" iMac (2.7 GHz Intel Core i5, 4GB RAM) maybe 6-7 months ago...and it has had NO problems. Even after updating to Lion. Smooth. But after the most recent graphics firmware update (Feb 29) and software update (late Feb/ealry March 2012..

  • Broadband usage shot up

    Hi I read the other query re broadband usage suddenly exceeding limit. before xmas i rarely went over 7gb of my 10gb limit.  december i went to 12 gb but daughters got net book and ipod so expected that, however on 4th January i recieved email to say

  • Ui.key.chromeAccess & Ui.key.contentAccess being ignored

    Hi, I recently switched back to Firefox from Chrome. However I noticed that alt+keys are still being used by the browser over web pages. I tried the old fix of changing ui.key.chromeAccess and Ui.key.contentAccess. But this time, the settings are com