xcodetabsbrowserfatal-errorpsmtabbarcontrol

PSMTabBarControl doesn't work in xcode 4.0


I am new to xcode and I'm trying to create a web browser with tabs. So I found out about PSMTabBarControl which allows me to control and edit the tabs as I desire... So I downloaded the framework and dragged it into the frameworks folder of my application, but when I try to run the application I get the same error: "0__dyld_dyld_fatal_error"

What does this mean, and how do I fix it?


Solution

  • You won't be able to get the Ibplugin to work, since Xcode 4 dropped support for ibplugins.

    However, PSMTabBarController itself works fine. You just have to drop an NSView in Xcode that's 22px high and window width, change the class to PSMTabBarController and then set the tabs up programmatically.

    here's my fork that compiles to a .framework perfectly in Xcode 4: https://github.com/dorianj/PSMTabBarControl