Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I suggest another method (it helped me, maybe it will help someone too). The method is following (assuming that you have Xcode3.0 installed):<br> 1) rename .pbproj to .xcode<br> 2) using muCommander ( <a href="http://www.mucommander.com/index.php#download" rel="nofollow noreferrer">http://www.mucommander.com/index.php#download</a> ) navigate to the .xcode folder. Inside the folder you will find 3 files. *.mode1, *.pdxuser, *.pbxproj (where * is some user name).<br> 3) now replace the *.mode1 and *.pbxuser user name given with yours<br> (ex. johndow.mode1 to myusername.mode1)<br> 4) after that replace .mode1 with .mode1v3 (ex. myusername.mode1 to myusername.mode1v3 )<br> 5) select myusername.pbxproj and hit View[F3] button (located in the bottom left corner of the mnCommander screen) and locate this lines (the very top lines):<br> archiveVersion = 1;<br> classes = {<br> };<br> objectVersion = 39;<br> objects = {<br> Replace 39 with 44 (the number depends on Xcode version installed; you can find out yours by creating a new project and locating the same lines in it's *.pbxproj ). Close and save the edited document.<br> Thats all! Now try to open the project with Xcode. </p> <p>Some optional steps. Must be taken after you've opened and closed the project with Xcode (after completing the previous section).<br> 6) still in the same document scroll down and locate this lines:<br> CFBundleShortVersionString<br> 0.5.0<br> CFBundleSignature<br> ????<br> CFBundleVersion<br> 0.5.0<br> Replace 0.5.0 to 1.0.23 or any other number starting from 1.0.0. The number corresponds to your product version.<br> 7) now locate this lines:<br> OSBundleLibraries<br> <br> com.apple.iokit.IOPCIFamily<br> 1.4<br> com.apple.iokit.IOStorageFamily<br> 1.3<br> com.apple.kernel.iokit<br> 1.1<br> Replace each anynumber to the version number installed on your system. You can find out the version by typing in " kextfind -bundle-id com.apple.iokit.IOPCIFamily "(where com.apple.<em>.</em>.* is the key you are looking for) in the terminal and hiting enter.<br> You will get somthing like this:<br> /System/Library/Extensions/IOPCIFamily.kext<br> Now copy the line you get in the muCommander locations bar. Select version.plist and hit View[F3] button. Locate the number in:<br> CFBundleVersion<br> 2.6<br> This number is what you've been looking for.<br> 8) locate the " MODULE_VERSION = 0.5; " line (there must be several instances). Replace 0.5 with 1.0 where 0.5 is a first two digits of 0.5.0 (1.0.23)<br> 9) locate the " compatibilityVersion = "Xcode 2.5"; " line and replace the " 2.5 " with " 3.0 " (which is the Xcode version)<br> The end.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload