Documentation Archive Developer
Search

Back to Jump Right In

About Creating Your First Mac App

Your First Mac App introduces you to the Three Ts of Mac app development:

You will create an app with a set of controls you can use to set the volume of an audio track. In this app, there is just one audio track but you can imagine an app that independently controls the volume of multiple audio tracks. After you complete all the steps in this tutorial, you’ll have an app that looks something like this:

image: ../Art/introart.png

As you can see above, there are three main user interface (UI) elements in the app that you create:

When you run the finished app, you enter a numeric volume in the text field and the slider updates accordingly. As you move the slider, the text field displays the current volume. When you click the Mute button, the volume is set to zero.

To benefit from this tutorial, it helps to have some familiarity with the basics of computer programming in general and with object-oriented programming and the Objective-C language in particular. If you haven’t used Objective-C before, don’t worry if the code in this tutorial is hard to understand. When you finish Start Developing Mac Apps Today, you’ll understand the code much better.