DynamicButtonStack
DynamicButtonStack lays out a collection of buttons in either a column or a row. It dynamically adjusts the layout to suit the button content and the available space.
Read more about the problems solved by DynamicButtonStack and the design principles behind it.
Requirements
- DynamicButtonStack requires iOS 13. (On older versions
UIButton
responds toimageEdgeInsets
slightly differently in some cases.) - The latest stable Xcode is expected.
- Works with both Swift and Objective-C apps.
Installation
Recommended
- Clone this repository.
- Drag
DynamicButtonStack.swift
into your Xcode project and add it to your target.
Swift Package Manager
Add DynamicButtonStack to an existing Xcode project as a package dependency:
- From the File menu, select Swift Packages › Add Package Dependency…
- Enter “https://github.com/douglashill/DynamicButtonStack” as the package repository URL.
CocoaPods
-
Add the following to your
Podfile
:pod 'DynamicButtonStack'
-
Run the following command:
pod install
The module name when using CocoaPods is DynamicButtonStackKit
.
Usage
Your app provides a DynamicButtonStack with buttons and a maximum width. The DynamicButtonStack then provides your app the minimum width and height required. You app then gives the DynamicButtonStack at least that amount of space and the buttons will be nicely stacked within that space.
You can supply as many buttons as you like. Their titles can be as long as you like, and the font can be as large as you like. In exchange, give the button stack the height it needs. Therefore the button stack is typically best placed in a vertically scrolling view.
Create a DynamicButtonStack
and give it an array of buttons that each have both an image and a title. Add the button stack to your view hierarchy.
let button = UIButton()
button.setImage(UIImage(systemName: "paperplane"), for: .normal)
button.setTitle("Send", for: .normal)
buttonStack = DynamicButtonStack(buttons: [
button,
])
view.addSubview(buttonStack)
The button stack can be laid out with either sizeThatFits
and layoutSubviews
or using constraints.
When using constraints, the stack sets its vertical compression resistance priority to required because the buttons may be clipped otherwise. Typically a width constraint should be provided.
When using layoutSubviews
, the frame should be set with a size at least as large as the size returned from sizeThatFits
(in both dimensions). Measure the minimum size using sizeThatFits
. Pass your container’s width limit and an unlimited height. An assertion will fail if the height is not unlimited. This is a reminder that handling restricted heights is not currently supported.
override func layoutSubviews() {
super.layoutSubviews()
let availableSize = CGSize(width: bounds.width, height: .greatestFiniteMagnitude)
let requiredSize = buttonStack.sizeThatFits(availableSize)
buttonStack.frame = CGRect(origin: .zero, size: requiredSize)
}
The buttons can be styled however you like. Colour, font, shadow, highlight state etc.
- Set both an image and a title.
- Don’t modify the
imageEdgeInsets
ortitleEdgeInsets
because DynamicButtonStack needs to adjust these to set the stacking and alignment inside the buttons. - Customise any other properties however you like. Setting
contentEdgeInsets
is recommended.
Status
Q & A
Does DynamicButtonStack use modern layout API like constraints, UIStackView or SwiftUI?
Would this be easier with SwiftUI?
Credits
DynamicButtonStack is a project from Douglas Hill and was developed for my reading app.
Licence
MIT license — see License.txt