Mac OS X is the flagship operating system from Apple Inc. It was the successor to Mac OS 9 and here the 'X' means 10. OS X is based upon the NeXTSTEP/OPENSTEP OSes developed in the 1980s and 1990s by NeXT Inc., which Apple purchased in 1996.

learn more… | top users | synonyms (4)

338
votes
89answers
123k views

Hidden Features of Xcode

With a huge influx of newbies to Xcode, I'm sure there are lots of Xcode tips and tricks to be shared. What are yours?
268
votes
31answers
62k views

How-to articles for iPhone development and Objective-C

I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either.
211
votes
24answers
110k views

Graphical diff for Mac OS X

Where can I find a convenient graphical diff-tool for Mac OS X (freeware)?
184
votes
34answers
158k views

Best subversion client for Mac OS [closed]

On Windows, Tortoise SVN is the daddy, no question. On the Mac there is nothing as simple and integrated, but there is a fair choice of tools. Which GUI clients are worth checking out and why?
145
votes
9answers
38k views

Git ignore file for Xcode projects

Which files should I include in .gitignore when using Git in conjunction with Xcode?
142
votes
20answers
111k views

Best visual client for Git on Mac OS X? [closed]

I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
123
votes
16answers
49k views

Open terminal here in Mac OS finder

Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out ...
123
votes
24answers
84k views

What is the best Git GUI on OSX? [closed]

What is the best GUI on OSX for viewing a Git repository, and (optionally) manipulating it?
117
votes
14answers
88k views

Setting environment variables in OS X?

What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit: /etc/paths ~/.profile ~/.tcshrc I don't even have ...
108
votes
23answers
14k views

Hidden Features of Xcode 4

Now that Xcode 4 is officially released it's time for a follow up to my previous question: Hidden Features of Xcode So what are they? What are those hidden little Xcode 4 hints & tips that you ...
96
votes
12answers
25k views

Is there any way in the OS X Terminal to move the cursor word by word?

I know the combination Ctrl+A to jump to the beginning of the current command, and Ctrl+E to jump to the end. But is there any way to jump word by word, like Alt+←/→ in Cocoa applications ...
76
votes
6answers
26k views

Core Data vs SQLite 3

I am already quite familiar with relational databases and have used SQLite (and other databases) in the past. However, Core Data has a certain allure, so I am considering spending some time to learn ...
67
votes
12answers
101k views

Easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard) or 10.7 (Lion)?

What is the easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard)? I'd prefer to use any bundled versions before resorting to downloading from the PHP or MySQL websites. I'm ...
66
votes
23answers
95k views

Best UML Application for MAC OSX / Cross Platform [closed]

What is the best mac based or even better cross platform UML Application available both costed and opensource / freeware?
63
votes
11answers
81k views

How install a specific jdk on Mac OS X?

I want to install a specific jdk (the latest for example). For this, I went to jdk download homepage: http://java.sun.com/javase/downloads/index.jsp I look for a mac version but i'm a bit surprise to ...
61
votes
11answers
71k views

Mac SQLite editor

I am aware of CocoaMySQL but I have not seen a Mac GUI for SQLite, is there one? My Google search didn't turn up any Mac related GUI's which is why I'm asking here rather than Google.
58
votes
12answers
17k views

Why can't I install Rails on Lion using RVM?

I'm running into issues trying to install Rails on OS X Lion using RVM. So far, I have done the following: Installed Mac OS X Lion Version 10.7 (Build 11A459e). Installed XCode 4.1 Developer ...
57
votes
10answers
9k views

What is the best way to solve an Objective-C namespace collision?

Objective-C has no namespaces; it's much like C, everything is within one global namespace. Common practice is to prefix classes with initials, e.g. if you are working at IBM, you could prefix them ...
54
votes
3answers
6k views

What kind of leaks does Objective-C's automatic reference counting (in Xcode 4.2) not prevent/minimize?

In the Mac and iOS platforms, memory leaks are often caused by unreleased pointers, so it is (as of now, at least) important to check your allocs, copies and retains to make sure each has a ...
53
votes
21answers
19k views

Cocoa and Objective-C resources?

What are the recommended online or offline resources for Objective-C and Cocoa programming? My online resources: O'Reilly. Some useful articles and examples, but has not been updated for quite a ...
50
votes
5answers
18k views

How to run mvim (MacVim) from Terminal?

I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it ...
49
votes
19answers
19k views

What's the cheapest mac development box possible?

Simple question really, I would like to learn some cocoa, primarily for playing around with the Iphone SDK, but first i need a mac. Macs are expensive, but I don't know at what point an old mac moves ...
48
votes
11answers
13k views

Repairing Postgresql after upgrading to OSX 10.7 Lion

I recently upgraded to OSX 10.7, at which point my rails installation completely borked when trying to connect to the psql server. When I do it from the command line using psql -U postgres it ...
47
votes
9answers
19k views

Execute a terminal command from a Cocoa app

How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
47
votes
20answers
26k views

MacPorts or Fink?

Which do you use? I am just in the process of installing sqlite3 from MacPorts (Mac version is 3.1.3 and Python 2.5 seems to be linked to a newer version, fileformat is new...) and have to download ...
45
votes
9answers
26k views

How do I create a nice-looking DMG for Mac OS X using command-line tools?

I need to create a nice installer for a Mac application. I want it to be a disk image (DMG), with a predefined size, layout and background image. I need to do this programmatically in a script, to be ...
43
votes
9answers
13k views

How Can I Remove .DS_Store Files From A Git Repository?

How can I remove those annoying Mac OS X .DS_Store files from a Git repository?
42
votes
4answers
9k views

How can I indent multiple lines in xcode?

When I select multiple lines of code and want to indent them as usual with TAB, it just deletes them all. I come from Eclipse where I always did it that way. How's that done in Xcode? I hope not line ...
41
votes
9answers
2k views

How to reliably guess the encoding between MacRoman, CP1252, Latin1, UTF-8, and ASCII

At work it seems like no week ever passes without some encoding-related conniption, calamity, or catastrophe. The problem usually derives from programmers who think they can reliably process a “text” ...
37
votes
11answers
12k views

What is the best Scheme or LISP implementation for OS X?

I am looking for a version of Scheme or even LISP that I can use to recover some lost Lisp development skills. Some web capabilities would be nice but not essential. I've looked at Plt and MIT ...
37
votes
9answers
11k views

Using Caps Lock as Esc in Mac OS X

How do I make Caps Lock work like Esc in Mac OS X?
36
votes
3answers
13k views

What should I set JAVA_HOME to on OSX

Many java applications that use shell scripts to configure their environment use the JAVA_HOME environment variable to start the correct version of java, locate JRE jars, etc. On OSX 10.6, the ...
36
votes
14answers
18k views

Clojure editor/IDE recommendations on Mac OS X

I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on Mac OS X? Update 2009-09-23: The Clojure space has changed tremendously since I ...
36
votes
19answers
24k views

What's a good machine for iPhone development?

I'm going to be working on some iPhone apps so I've been given a golden ticket to buy a Mac. However the golden ticket isn't worth that much, and I'm thinking iMac. Now, Macs are great, I love 'em and ...
35
votes
7answers
11k views

Finding current executable's path without /proc/self/exe

It seems to me that Linux has it easy with /proc/self/exe. But I'd like to know if there is a convenient way to find the current application's directory in C/C++ with cross-platform interfaces. I've ...
34
votes
7answers
6k views

Cant install Ruby Enterprise Edition with RVM on OSX Lion

Here is what I have done so far. Clean install of OS X Lion Downloaded and installed latest version of Xcode from the App Store. Installed Git Installed Homebrew Installed RVM I am now trying to ...
34
votes
7answers
12k views

Source code for Mac OS X java version 1.6.0_22

Java for Mac OS X 10.6 Update 3 upgraded to java 1.6.0_22. However, they did not include the source code or JavaDoc. Does anyone know if Apple provides the source, and if so, where to find it? I'd ...
34
votes
40answers
26k views

Mac text/code editor

I searched for this and found Maudite's question about text editors but they were all for Windows. As you have no doubt guessed, I am trying to find out if there are any text/code editors for the Mac ...
33
votes
4answers
68k views

How to run a .sh-script in an Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down.
33
votes
4answers
22k views

Building Xcode Projects From the Command Line

I've been playing around with Qt for a few hours now. I found that qmake produces Xcode project files on Mac OS X instead of good ol' makefiles. I don't want to launch Xcode every time I want to build ...
33
votes
3answers
10k views

Change templates in Xcode

How would I change the initial templates created by Xcode when creating a new Cocoa Class. I am referring to the comments and class name created when using Xcode's new class wizard.
32
votes
6answers
23k views

How do you setup Eclipse to work on iPhone development (instead of Xcode)?

Although I've been getting more and more familiar with Xcode while developing for the iPhone, there are times I just wished I had a better IDE, something like Eclipse. So I was wondering does anyone ...
31
votes
4answers
13k views

Authorize a non-admin developer in Xcode / Mac OS

I use a standard user account for my daily tasks on Mac OS. Since upgrading to Snow Leopard I am asked to do the following when a program is run from within Xcode: "Type the name and password of a ...
31
votes
6answers
12k views

Good Mac OS X Client/GUI for Postgresql? [closed]

Anyone found one of these? "Sequel Pro" is awesome for MySQL development on Mac OS X, and they say they are working on Postgresql support (see discussion here) but I haven't found anything else in ...
31
votes
16answers
29k views

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

My colleagues and I are looking for alternative client tools for Mac OS X. I tend to prefer the text-based interface and we have PHPMyAdmin installed on our development servers (Linux). What are ...
31
votes
16answers
59k views

Is it possible to run OSX in a virtual machine? [closed]

I'd love to be able to try Mac OSX in a VM, preferable on something shiny and new like KVM for linux. I'm a Linux and Windows person, but would like to try out OSX without investing in the expensive ...
31
votes
29answers
59k views

SQL Client for Mac OS X that works with MS SQL Server

What's a good SQL client for Mac OS X that works with MS SQL Server? I don't really need a GUI, but it's nice to have for the color coding and resultset grid.
30
votes
4answers
7k views

How do you print out a stack trace to the console/log in Cocoa?

I'd like to log the call trace during certain points, like failed assertions, or uncaught exceptions.
30
votes
9answers
21k views

Emacs on Mac OS X Leopard key bindings

I'm a Mac user and I've decided to learn Emacs. I've read that to reduce hand strain and improve accuracy the CTRL and CAPS LOCK keys should be swapped. How do I do this in Leopard? Also, in Terminal ...
30
votes
9answers
6k views

Sending a message to nil?

As a Java developer who is reading Apple's Objective-C 2.0 documentation: I wonder as to what sending a message to nil means - let alone how it is actually useful. Taking an excerpt from the ...

1 2 3 4 5 342