Search Results

2
votes

Using a Mac for cross platform development?

Another option is Cocotron. It runs on Mac OS X, and includes cross-compilers that target Windows, Linux, and Solaris, an Objective-C runtime a …
4
votes

Best Cocoa/Mac OS X programming blogs?

CocoaBlogs.com has a list of quite a few. …
0
votes

Finding DNS server settings programmatically on Mac OS X

You could read from /etc/resolv.conf. …
0
votes

What MySQL client application would you recommend for Mac OS X?

/usr/local/bin/mysql of course! What else do you need? :-) …
-3
votes

Is there anything like Winsplit Revolution for Mac OS X?

I doubt it. Between Spaces and Expose, there's not much need for a third-party app to help manage multiple windows. …
5
votes

How to build a dmg Mac OS X file (on a non-Mac platform)?

If you're distributing Mac apps, then surely you have a Mac to write and test them. Why not simply use that same Mac to create the disk image? [Edit] Alternatively, if you're distributing a …
0
votes

Problem with applet loading on Mac OS x 10.4

What Java version are you targeting? Java 1.6 is only supported on 64-bit Intel (i.e. Core 2 and Xeon) Macs running Leopard. …
1
vote

I would like to find something like gkrellm for the Mac

If you're looking for something simple, and almost certainly already installed on the Linux box, you could SSH into the Linux machine and use tools like …
1
vote

How do I cast id to a float?

The compiler makes that kind of assumptions when multiple classes declare methods with the same name, that return different types. Since your "item" variable is typed as an "id," the compiler doesn …
2
votes

How do you develop an application to draw, edit and save UML models in Cocoa?

Have you looked at the Sketch example project, found in /Developer/Examples/AppKit? It should get you at least halfway to where you're going. …
1
vote

Develop app to run natively or go cross platform?

If your app uses an MVC design, you can write portable model classes using C++, and native controller and view classes for each platform you want to support. That gives you the best of both worlds …