Pop Up And Pull Down Buttons in AppKit

Updated on November 14th, 2022

⏱ Reading Time: 10 mins

AppKit framework exposes a variety of buttons to layout when implementing macOS apps, so we can provide users with the most appropriate controls to use when interacting with the app’s interface. Even though NSButton is the basic class to create buttons, there is a subclass of it named NSPopupButton, which gives us two particular types of buttons; the pop up and pull down. These are what this post focuses on.

Being more specific, in this post I’ll demonstrate how to create both pop up and pull down buttons programmatically in Xcode. It’s worth noting, even from the beginning, that pull down buttons are actually pop up buttons that differentiate in just a couple of points. Other than that, the configuration steps are pretty similar, so knowing how to implement the one definitely makes possible to implement the other.

What makes pop up and pull down buttons stand out from normal buttons is that when they are clicked, they present a menu instead of performing a particular action. For that reason, they are great for providing actions to users that are not used often, but they are easily accessible and just a click away.

But even though both show a menu when clicked, they also have three points of difference between them:

  1. Pop up buttons have a double arrow indicator on the side pointing up and down, while pull down have a single arrow indicator pointing just down.
  2. Pop up buttons display all menu items assigned to them when the menu is expanded. Pull down buttons use the first menu item as a label, and display only the rest on menu expansion. This fact makes pull down buttons ideal for toolbars or other action-containing places, as they can display a title, an image, or a combination of them that hide a bunch of menu items triggering various operations.
  3. Pop up buttons display the selected item when the menu is collapsed. On the other hand, pull down buttons always show their label, no matter which menu item is selected.

Right next you can see samples of both pop up (left side) and pull down (right side) buttons. Initially with the default appearance, then without border, and lastly the displayed menu items when the menu is expanded:

Creating a pop up button

Let’s get started by going through what it takes to create a pop up button programmatically. Undeniably, the first thing we need is a stored property in the view controller (or the view) class that we are working on, just like the next one:

When it comes to initialize and configure UI controls programmatically, then I prefer to create separate methods for that purpose, especially if the creation of a control requires more than a few lines of code. In that spirit, in the next sample method we initialize the popupButton declared right above:

The layoutPopupButton() method contained in the previous snippet is another method that adds the pop up button to the view controller’s view and set its constraints up. It places the pop up button to the center of the view, and its implementation is presented right in the next code segment. Keep in mind, however, that this is just a layout suitable to the purposes of this post, and there are no other views to consider.

Other than that, we initialized the pop up button in the previous snippet with an initializer that takes no arguments. There are more initializers though, which can accept a frame for the pop up button, a title, an image and more. To keep things simple I won’t focus on them, but I leave it to you to explore further and see if there is any initializer that fits better your needs.

Adding menu items to pop up button

Usually, creating and configuring the menu items that a pop up button will display is where the majority of time is spent. There are two particular ways menu items can be assigned to a pop up button, which we’ll meet here. Then, I’ll show you a more convenient way to deal with all that.

When defining new menu items we need to specify the next three pieces of data:

  • A title, image, or both for the menu item.
  • A method that will be invoked on click and perform some action.
  • The target class of the action method.

You’d probably expect that it would be possible to assign entire NSMenuItem objects to pop up buttons. However, that’s not the case here. A pop up button accepts just either a single, or multiple titles and it creates the respective menu items automatically. But still, we have to go through them and set their action methods and targets manually.

Let’s see first how to specify and configure menu items one by one. You can see in the next snippet that we can create a new menu item providing a single title with the addItem(withTitle:) method:

Once the actual item is created after having called the above method, we can then fetch it using a property named lastItem and then set the missing data. Keep in mind though that lastItem returns an optional object, so it’s necessary to unwrap it first:

The item’s action is a Selector object containing the name of the method to be invoked when the item gets clicked. The target is usually the same class itself, indicated by the self keyword above, but you can always set a different target if necessary.

Notice that selector methods must be marked with the @objc keyword. For the purposes of this post we are going to use the following dummy action methods:

Similarly to what I just demonstrated, we can keep adding more titles in order to create menu items. Here’s an example continuing the presented sample so far:

The above code creates four menu items with the specified titles. Here’s what we’ll get by running this simple demo app:

Don’t forget that the configurePopUpButton() must be called somewhere, and the most suitable place for that here is the viewDidLoad() method:

Although the previous code works just fine, it still has a flaw. It takes a considerable amount of repetitive lines with only some of them containing actual changes. For a large number of items, doing the above is totally counter-productive. It’s possible to speed up things a little though following a different approach; we’ll start by providing multiple titles at once:

Now, instead of accessing each item separately, we’ll use a for-in loop to iterate through all of them. We’ll use another method named item(at:) in order to get each item, but note once again that it returns an optional value:

Setting the target for each item is not going to be difficult; it’s the same for all items:

Things are not the same regarding the action methods however. We need to specify an action for each item separately, so we’ll use a switch statement for that:

The configurePopUpButton() method now becomes as shown next:

Much better this time, but there is still room for improvement, so we can change only what’s actually needed.

A faster way to configure menu items

Supposing that the target of the menu actions is going to be the self instance always, then what we only care to set for each menu item is the title, image (optionally) and the action method. Based on that thinking we can define the following method that accepts all the above as arguments, including one more; the pop up button that we are configuring menu items for:

Note: In fact, the control parameter can be omitted, but I’m going to use the same method when I’ll talk about pull down buttons as well. So, we keep it there and make the method more general and not for a particular button only.

In the method’s body we’ll put in motion what we have already met. We’ll begin by providing the title for a new menu item, and then we’ll fetch it in order to assign the image, selector and target:

In the configurePopUpButton() we can now call the above method as many times as the menu items we want to create, supplying it with the proper arguments each time:

No doubt, that’s shorter compared to both implementations presented in the previous part, but on top of that, we now have a reusable method that can be used in other projects as well.

Borderless pop up buttons

The default pop up button’s appearance might not be always matching to the user interface of an app. Removing the visible default border gives a totally different look, and trying it out is totally effortless.

In fact, all we need in order to remove the border and the standard appearance is to set false to the isBordered property:

The result of the above is the following:

Creating a pull down button

A pull down button is actually a pop up button where a few properties have different values. Practically, if you can create a pop up button then you are just a step away from converting it into a pull down.

Just like as before, let’s get started with the declaration of a new NSPopUpButton property in the view controller class:

Next, we initialize the above in a new method, the place where we’ll configure it as well:

For reference, the layoutPullDownButton() is the following:

If you call the configurePullDownButton() method and try to run the app, what you’ll get is a pop up button. There is one particular property that changes it from a pop up to a pull down; the pullsDown that you see right next:

For the sake of the demonstration, let’s say that we want to configure the pull down button so it displays an image only instead of a title as label. To specify that, it’s necessary to set the imageOnly value to the imagePosition property like so:

As mentioned in the introduction already, pull down buttons present the first menu item that will be given to them as label and not as part of the menu. Therefore, we’ll specify one that will contain an image without a title. Once again we’ll make use of the addMenuItem(withTitle:image:action:to:) method implemented earlier:

The image in this demo is an SF Symbol. Notice that it’s necessary to provide an action method in this case as well, but this one will remain empty:

Just like it happened with the pop up button, the next step is to specify the menu items that will appear in the button’s menu when it gets clicked:

With all the above in place, if we call the configurePullDownButton() in viewDidLoad() we’ll get the following:

I mentioned earlier about borderless pop up buttons. Removing the border is sometimes more useful in pull down buttons, as it removes the default appearance and emphasizes the displayed image:

Finally, there’s one more property that you might find useful in cases like the one discussed here. It’s the imageScaling that allows to scale the displayed image through some default values:

Right next you can see the configurePullDownButton() method with all the additions made to it, and then how the pull down button looks like eventually:

Conclusion

Pop up and pull down buttons are special buttons on macOS as they both present a menu when clicked, but still have some differences as shown in previous parts. Creating them programmatically is not difficult, with the most important task being the definition of the menu items to display. Hopefully, the proposed solution with the addMenuItem(withTitle:image:action:to:) method might be proved useful in actual projects of yours. But even without it, everything is a straightforward process that just takes some additional lines of code to complete. Creating pop up and pull down buttons can also be done graphically in Interface Builder, but that’s a topic that I might cover in a future post.

Thanks for reading, enjoy coding! ????‍????

Stay Up To Date

Subscribe to my newsletter and get notifiied instantly when I post something new on SerialCoder.dev.

    We respect your privacy. Unsubscribe at any time.