PSMTabBarControl doesn't work in xcode 4.0

438 Views Asked by At

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?

2

There are 2 best solutions below

0
dorianj On BEST ANSWER

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

2
WrightsCS On

That source code isn't managed anymore, so there seems to have been changes to frameworks it links to. Unless you have the framework sources or updated code to build, you most likely wont be able to get this to work.