Search results

  1. C

    Unable to compile simple Objective-C app.

    Wow that worked! Thank you very much! As much as I find Xcode to be very useful for big projects or GUI applications, I think it is kind of cumbersome for small console applications. Thanks again!
  2. C

    Unable to compile simple Objective-C app.

    Yes as I said it compiles fine under Xcode. Are there any ways to see what Xcode did execute under the hood to compile the source files? Jeff
  3. C

    Unable to compile simple Objective-C app.

    I just realized that it compiles fine under Xcode. Should I use something else than gcc to compile from command line? Should I use different options? Regards, Jeff
  4. C

    Unable to compile simple Objective-C app.

    Hello, I am following a guide found on the internet and I am unable to compile it. Following are me 3 source code files: Fraction.h #import <Foundation/NSObject.h> @interface Fraction : NSObject { int numerator; int denominator; } -(void) print; -(void) setNumerator: (int)...
  5. C

    Trying to learn Cocoa/Xcode, LQya the same problem

    Seems like newly created projects will not appear in the list. I closed the project and re-opened it and now it's there! Thanks!
  6. C

    Trying to learn Cocoa/Xcode, LQya the same problem

    Hello everyone, I've been trying to learn Objective-C, Cocoa and Xcode for the past few days and for every tutorials/guides I go through, I always get stuck at the same place. I've created my Cocoa project, double-clicked the .mib and then created my interface, one main class, and linked...
Back
Top