PMSuperButton
  • November 11, 2023

PMSuperButton is a powerful UIButton coming from the countryside, but with super powers! 😎

An easy way to create custom and complex buttons with custom attributes, directly added to the iOS Interface Builder, very easy to integrate into every project!

Top 100 Coolest Super Powers:


  •  Edit everything directly from storyboard or code 😏
  •  Change border color, width
  •  Customize the corner radius
  •  Set a gradient background
  •  Edit everything about the shadows: color, opacity, offset
  •  Animations when the button is highlighted đŸ€—
  •  Animations when the button is selected
  •  Ripple tap effect, where you can edit ripple color and ripple speed (like a Google Material button) 😼
  •  Toggle functionality
  •  Image View content mode and alpha
  •  Touch up inside closure đŸ€ 
  •  Loader đŸ€œđŸ€›
  •  Swift 3, 4 and Swift 5 support
  •  and much more

How it works


The library allows you to use all the features of standard UIButton with a lot of new cool features, customizable from Storyboard or from code.

First of all, drag & drop a new UIButton inside your view controller in storyboard, then set the UIButton class to PMSuperButton:

That’s it! Now you are ready to customize your PMSuperButton from the Attributes Inspector of Interface Builder.

How to use Touch Up Inside closure

IBAction or addTarget() with #selector? No thanks, we have a closure for this:

myButton.touchUpInside {
print(“This button was pressed!”)
}

How to show the loader indicator

 

//Pass `false` to disable user interaction while loading is showed
myButton.showLoader(userInteraction: true)

//Hide loader
myButton.hideLoader()

Requirements


  • iOS 8.0+
  • Xcode 10+

CocoaPods


CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate PMSuperButton into your Xcode project using CocoaPods, specify it in your Podfile:

source ‘https://github.com/CocoaPods/Specs.git’
platform :ios, ‘8.0’
use_frameworks!

pod ‘PMSuperButton’

Then, run the following command:

$ pod install

Carthage


Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate PMSuperButton into your Xcode project using Carthage, specify it in your Cartfile:

github “pmusolino/PMSuperButton”

Run carthage update to build the framework and drag the built PMSuperButton.framework into your Xcode project.

Manually


  1. Download and drop /Sources folder in your project.
  2. Congratulations!

Swift compatibility


GitHub


View Github

#animation #button #closure #customizable #interfacebuilder #storyboard #uibutton #uicontrol
YOU MIGHT ALSO LIKE...
🧭 NavigationKit

NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. đŸ’» Installation 📩 Swift Package Manager Using Swift Package Manager, add ...

swiftui-navigation-stack

An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...

Stinsen

Simple, powerful and elegant implementation of the Coordinator pattern in SwiftUI. Stinsen is written using 100% SwiftUI which makes it ...

SwiftUI Router

With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...

FlowStacks

This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...