Xcode for tiger

I was running xcode on my system and had to re-install a compressed image from a recovery disk due to booting problems. Now my xcode doesn't work. I tried downloading a new version, but the new one on dev website runs only on leopard.
Does anybody have a link for Xcode for tiger (or any other suggestions)?
Thx!

The XCode Tools disc that came with your computer's original discs has the installer. You can download older versions than Leopard's at developer.apple.com. You will need to register for membership but basic membership is free and will give you access to all the XCode installers.

Similar Messages

  • Compiled Error in Xcode for iphone game and other questions

    Dear all,
    Hi, I am a newbie of xcode and objective-c and I have a few questions regarding to the code sample of a game attached below. It is written in objective C, Xcode for iphone4 simulator. It is part of the code of 'ball bounce against brick" game. Instead of creating the image by IB, the code supposes to create (programmatically) 5 X 4 bricks using 4 different kinds of bricks pictures (bricktype1.png...). I have the bricks defined in .h file properly and method written in .m.
    My questions are for the following code:
    - (void)initializeBricks
    brickTypes[0] = @"bricktype1.png";
    brickTypes[1] = @"bricktype2.png";
    brickTypes[2] = @"bricktype3.png";
    brickTypes[3] = @"bricktype4.png";
    int count = 0;`
    for (int y = 0; y < BRICKS_HEIGHT; y++)
    for (int x = 0; x < BRICKS_WIDTH; x++)
    - Line1 UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]];
    - Line2 bricks[x][y] = [[[UIImageView alloc] initWithImage:image] autorelease];
    - Line3 CGRect newFrame = bricks[x][y].frame;
    - Line4 newFrame.origin = CGPointMake(x * 64, (y * 40) + 50);
    - Line5 bricks[x][y].frame = newFrame;
    - Line6 [self.view addSubview:bricks[x][y]]
    1) When it is compiled, error "ImageCache undeclared" in Line 1. But I have already added the png to the project. What is the problem and how to fix it? (If possible, please suggest code and explain what it does and where to put it.)
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    For instance, returns one of the file name bricktype1.png to the image object? If true, what is the max value of "count", ends at 5? (as X increments 5 times for each Y). But then "count" will exceed the max 'index value' of brickTypes which is 3!
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    Thanks
    North

    Hi North -
    macbie wrote:
    1) When it is compiled, error "ImageCache undeclared" in Line 1. ...
    UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]]; // Line 1
    The compiler is telling you it doesn't know what ImageCache refers to. Is ImageCache the name of a custom class? In that case you may have omitted #import "ImageCache.h". Else if ImageCache refers to an instance of some class, where is that declaration made? I can't tell you how to code the missing piece(s) because I can't guess the answers to these questions.
    Btw, if the png file images were already the correct size, it looks like you could substitute this for Line 1:
    UIImage *image = [UIImage imageNamed:brickTypes[count++ % 4]]; // Line 1
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    Though you don't show the declaration of brickTypes, it appears to be a "C" array of NSString object pointers. Thus brickTypes[0] is the first string, and brickTypes[3] is the last string.
    The expression (count++ % 4) does two things. Firstly, the trailing ++ operator means the variable 'count' will be incremented as soon as the current expression is evaluated. Thus 'count' is zero (its initial value) the first time through the inner loop, its value is one the second time, and two the third time. The following two code blocks do exactly the same thing::
    int index = 0;
    NSString *filename = brickTypes[index++];
    int index = 0;
    NSString *filename = brickTypes[index];
    index = index + 1;
    The percent sign is the "modulus operator" so x%4 means "x modulo 4", which evaluates to the remainder after x is divided by 4. If x starts at 0, and is incremented once everytime through a loop, we'll get the following sequence of values for x%4: 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, ...
    So repeated evaluation of (brickTypes[count++ % 4]) produces the sequence: @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", ...
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    Line 2 allocs an object of type UIImageView and specifies the data at 'image' as the picture to be displayed by the new object. Since we immediately assign the address of the new UIImageView object to an element of the 'bricks' array, that address isn't stored in any named variable.
    The new UIImageView object is not associated with the name of the png file from which its picture originated. In fact the UIImage object which inited the UIImageView object is also not associated with that png filename. In other words, once a UIImage object is initialized from the contents of an image file, it's not possible to obtain the name of that file from the UIImage object. Note when you add a png media object to a UIImageView object in IB, the filename of the png resource will be retained and used to identify the image view object. But AFAIK, unless you explicitly save it somewhere in your code, that filename will not be available at run time.
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    In Line 2 we've set the current element of 'bricks' to the address of a new UIImageView object which will display one of the 4 brick types. By default, the frame of a UIImageView object is set to the size of the image which initialized it. So after Line 2, we know that frame.size for the current array element is correct (assuming the image size of the original png file was what we want to display, or assuming that the purpose of [ImageCache loadImage:...] is to adjust the png size).
    Then in Line 3, we set the rectangle named newFrame to the frame of the current array element, i.e. to the frame of the UIImageView object whose address is stored in the current array element. So now we have a rectangle whose size (width, height) is correct for the image to be displayed. But where will this rectangle be placed on the superview? The placement of this rectangle is determined by its origin.
    Line 4 computes the origin we want. Now we have a rectangle with both the correct size and the correct origin.
    Line 5 sets the frame of the new UIImageView object to the rectangle we constructed in Lines 3 and 4. When that object is then added to the superview in Line 6, it will display an image of the correct size at the correct position.
    - Ray

  • Where can I download  Xcode for mac osx 10.7.5?

    Where can I download  Xcode for mac osx 10.7.5?

    Xcode 4.6.3 can be downloaded from the Developer Downloads (you will need to be registered for access).

  • How can I download Boot Camp for Tiger

    Hello I cannot find anymore ways to download Boot Camp for Tiger not for Leopard because I don't have that kind of Operating system. It's kind of expensive.
    If you have any advice or links, please tell me..
    Thanks.
    Shang

    Shangqi wrote:
    Hello I cannot find anymore ways to download Boot Camp for Tiger not for Leopard because I don't have that kind of Operating system. It's kind of expensive.
    If you have any advice or links, please tell me..
    Apple discontinued BootCamp beta last year. They have all expired and no longer work.
    It was a beta program.
    You need to purchase Leopard in order to install BootCamp and get the updates.
    You can also install Winders without BootCamp using a virtual program like Parallels or using the free bootmanager, rEFIt. Either of these will allow you to install Winders, Linux or any other OSs on your HD, but you are on your own if you take that route.
    The only support path is using Leopard.

  • Hello Mac heads.! I just downloaded Onyx for tiger.  All went well.  But I try to launch onyx from my applications and it doesn't offer checking the S.M.A.R.T. status so I can check my disk.  Everything else appears.  Uninstall only, forums, website etc.

    Hello Mac heads.! I just downloaded Onyx for tiger.  All went well.  But I try to launch onyx from my applications and it doesn't offer checking the S.M.A.R.T. status so I can check my disk.  Everything else appears.  Uninstall only, forums, website etc.

    I think you should get Applejack...
    http://www.macupdate.com/info.php/id/15667/applejack
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 6 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files! :-)
    Disconnect the USB cable from any Uninterruptible Power Supply so the system doesn't shut down in the middle of the process.

  • Java templates gone from XCode for 10.6

    I went back to rework some Java applets I have written and discovered they don't compile anymore in Xcode (at least as before)
    Hmm. I had Java templates, downloaded the latest XCode and the templates are gone. My 'old' applets won't compile complaining 'Jam is deprecated and has been removed; targets that use Jam must be upgraded to native targets. For more information on doing this, consult the Xcode documentation.'
    I found a separate Java SDK download? From
    http://developer.apple.com/java/download/
    has 10.5 version listed only
    Clicking on the link goes to the (old) log-in page for the Developer program and the download/Java link goes to a page with 10.6 Java downloads - Developer previews.
    Still no Java templates (in Xcode). Maybe I should read the documentation (if I can find where it was installed). I was able to 'compile' the Hello World applets in the organizer window but no 'Hello World' in Safari.
    What's happened to the 'old' system for Java development?

    After installing XCode 3.2.1 there were no Java docs or Java templates. I installed the Java files and docs for 10.6 from the developer site. Searching XCode for Java gives a lot of Javascript items but no easy answers for Java. Using the Organizer window instead of the Xcode project window is a big change. I must have missed it but searching this forum, Xcode and now the java-dev mailing list archive hasn't given me good answers. One answer seems to be to put Mac OS X10.5 on a separate volume, install the older XCode (or current??) and develop Java one OS version back.
    The Hello World applet didn't run for me when I tried it. Blank browser window. Java Preferences seem to default for 10.6
    "Create Java projects in Xcode 3.2 using Xcode's Organizer. Choose Window > Organizer to open the Organizer. Click the + button at the bottom of the Organizer. Choose New From Template > Java Templates." > Java Applets. Build
    BUILD SUCCESSFUL
    Total time: 1 second
    The Debugger has exited with status 0.
    gives a new window in Safari but it is empty.

  • Hello MacHeads: I downloaded Handbrake 0.9.1 for Tiger, so I can upload a homemade DVD for editing in imovie.  Problem is I can't even access Handbrake Help book, because I think my firewall settings are preventing me.  I tried turning off all my firewall

    Hello MacHeads: I downloaded Handbrake 0.9.1 for Tiger, so I can upload a homemade DVD for editing in imovie.  Problem is I can't even access Handbrake Help book, because I think my firewall settings are preventing me.  I tried turning off all my firewall settings.?  IDK if I'm even doing that right.  Can anyone help out here?

    You don't need Handbrake for that if it is your own DVD.
    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle.
    a DVD is in a compresed format called mpeg2, which is standard across all DVDs. This is what is known as a 'final delivery format' and is not suitable for editing. Because is is compressed, a 4.7GB DVD can hold a two hour movie (dual layer DVDs twice that), whereas the DV stream from a video camera, which runs at about 13GB per hour, is not compressed and IS intended for editing.
    In other words you have to 'reverse engineer' the DVD back to an uncompressed format in ordfer to edit it. There is a penalty for doing this in terms of slight quality loss, but it is one you can live with.
    When you have your DVD as an icon on your desktop, double-click it, and it will open to reveal a TS-Folder containing a number of various files, some called VOB. These are the constituent parts of any video DVD.
    When you have downloaded and installed mpegStreamclip, and purchased and installed the Apple mpeg2 plugin, open mpegStreamclip and drag the entire TS Folder into its window. Then using the various menus available to you (just explore them and you will get the hang of it) ask it to convert to DV.
    That DV file, which will be many times larger than the original TS Folder, and which can a while to create (be patient - make coffee or prune the roses!) is what you can now import into iMovie for editing etc.
    When you have finished doing that, you then have to turn the project back into a DVD.
    mpegStreamclip can be downloaded from here:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://www.apple.com/quicktime/mpeg2/
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.

  • Using XCode for Cross Developing (Target would be Linux x86)

    I'm developing RealTime Software - running as RT-Kernel modules - written in C for Linux x86 (RTlinux on Kernel Version >2.4.32 or RTAI on Kernel Version 2.6.x).
    At the moment I develop using ssh and vi on the target machine. This is NOT very comfortable.
    After searching your forum I found:
    http://discussions.apple.com/thread.jspa?messageID=2322911&#2322911
    Fine Links to the XCode Documentation. But reading it I just found how to cross develop to MacOS X targets (x86 and PPC).
    Can you please tell me, if it is possible to use XCode for cross development with target machines using Linux on x86?
    Thank you
    Johann

    In theory, yes. In practice, no. You would need a version of GCC that supports targeting that architecture and all the header and library files for that architecture. It is highly unlikely to be worth the time and effort to try it and it may not even work even if you do everything right. Plus, you would still have to run and test on the target platform.
    You'll just have to make life the best that you can on Linux. I suggest downloading the NEdit editor for X Windows. It is as good as any Mac editor and very easy to script for automation.

  • Need a copy of CS3 for Tiger

    Hello, I would like to buy or find a copy of Creative Suites 3 for Tiger. My OS is 10.4.4.
    Please let me know if you can help! Thanks.

    Lolais, welcome to Apple Discussions.
    You can join LEM-Swap for buying & selling Mac stuff. http://groups.google.com/group/lemswap
    After you join, post a WTB (want to buy).
    Also check on eBay & your local Craig's List.
     Cheers, Tom

  • Xcode for Mac OS X 10.6.8

    Hi!
    I need to download the xcode for my system version (Mac OS X 10.6.8) and I can´t...
    CXcould anybody help me please?
    Thanks!

    I´ve tryed but there is a problem and I can´t see the links...they suggest me to try again but I´ve been trying for hours and it´s impossible...thanks anyway for answering...

  • HT4767 i have a mac os x version 10.7.2 . but i don't find Xcode for 10.7.2 . can you help me!!!

    hello
    i have a mac os x 10.7.2 . but i don't find xcode for 10.7.2 . can you help me.

    IIRC = if I remember correctly.
    http://www.acronymfinder.com/IIRC.html

  • QT 7.2 installer for Tiger ?

    Anyone know where I can get the QT 7.2 installer for Tiger (PPC Mac)?
    I've searched all over Apple's download site and the only versions I can find there are 7.4 and 7.4.1
    Thanks in advance for any help you can give.

    Thanks. That's a great link.
    In the meantime, I found the specific download in a thread in the Final Cut Express forum.
    Here's the link - http://www.apple.com/support/downloads/quicktime72formac.html

  • I've paid $ 3,99 for Xcode for Snow Leopard. Now there is a new Xcode for Lion, so I downloaded the new one but the installed continued to be the old one. Now App Store says "Installed" and don't allow me to re-download Xcode. How can I proceed?

    I've paid $ 3,99 for Xcode for Snow Leopard 12 days ago. After installing Lion I saw there is a new FREE Xcode for it, so I downloaded the new one but after installing automatically Xcode for Lion the Developer folder contained the old one. I deleted the old Xcode but the App Store says "Installed" and don't allow me re-download Xcode.
    How can I proceed? I'm guessing whether this problem will occur each time I buy an application from App Store.

    Yes, that's righ, Xcode installer was in the Apps folder. I assumed it had been automatically installed and the installer deleted after installation (the same way as Lion is installed).
    I tried also the procedure for redownloding applications, and MAS showed both Xcodes (Lion and Snow Leopard) and OS X Lion. We see that buttons for Lion and Xcode for Snow Leopard say 'Install' but Xcode for Lion says 'installed' because there is an Install Scode in the Apps folder.
    Thank you.

  • Is there a version of XCode for windows?

    I am a big developer in android and windows apps. And looking to get involved in iOS app dev.
    I dont own a Mac, so is there a vesrion of XCode for windows?
    Or is a virtual machine my only option?

    This from the Lion EULA:
    "2. Permitted License Uses and Restrictions.
    A. Standard and Preinstalled Apple Software License. Subject to the terms and conditions of this
    License, unless you obtained the Apple Software from the Mac App Store, on Apple-branded
    physical media (e.g., on an Apple-branded USB memory stick) or under a volume license,
    maintenance or other written agreement from Apple, you are granted a limited, non-exclusive license
    to install, use and run one (1) copy of the Apple Software on a single Apple-branded computer at
    any one time. For example, these standard single-copy license terms apply to you if you obtained the
    Apple Software preinstalled on Apple-branded hardware."
    The key words are in bold.

  • Will there be a Security Update 2009-006 for Tiger PPC

    Apple released Security Update 2009-006 for Leopard today, but not for Tiger.
    Is there going to be any more support and updates for Tiger, since Snow Leopard came out?
    Thanks

    Klaus1 wrote:
    I am writing this from Firefox however
    Chicken!
    Hahahahah, yeah....
    Actually, I just tried to reply to your message using Safari 4.0.4 and repeatedly got this error:
    Request Timeout
    The server timed out while waiting for the browser's request.
    Reference #2.4da21160.1258046993.0
    It did that with another page too, but is loading others fine. I am wondering if there is an issue. I may have to downgrade to 3 again, if that is possible.
    I got used to using Firefox because I just upgraded from OS X 10.3.9 and had to use Safari 2.x, which doesn't work so well with the web anymore.

Maybe you are looking for

  • Hyperlinks in Crystal reports  - SAP BW BI environment

    Hi Gurus, I am working on SAP BI BO integration environment on Cystal reports 2008 and WebI reports. Source for both of them are BEx queries. 1. I need to create a hyperlink on one crystal report column which opens another Crystal report. The target

  • Ichat doesnt open.

    Hi, Ive had my macbookpro for about a bit over 2months now, but ive never been able to open Ichat. I click the icon and nothing happens. Any suggestions?

  • Large (highest ?) Number of Partitions / SubPartitions in *Production*

    In theory, the maximum number of Partitions/SubPartitions that Oracle supports for a table is 1024K-1 in 10gR2. Per MetaLink Note#76765.1, the limit was 64K-1 in 8i -- and, I understand from the 9i docs, was also the same limit in 9i. The Note candid

  • ODI/OWB scripting question

    Hi all, I new to ODI and would appreciate some guidance. I have developing a substantial ETL environment using OWB(10g) and have now been directed to change it over to ODI(11g). In OWB we had the OMB+ and TCL scripting capability to create and modify

  • Sqldeveloper 1.5.3 caching stored proc?

    I'm using sqldevloper 1.5.3 to connect to a SQL Server 2005 database with the JDBC driver. It appears to be caching a stored procedure. When the procedure is changed, that change isn't picked up. I'm not sure if this is a driver issue or something wi