- August 12, 2025
- Mins Read
BPStatusBarAlert
is a library that allows you to easily make text-based alert that appear on the status bar and below navigation bar.
iOS 8.3
Swift 3
BPStatusBarAlert is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod “BPStatusBarAlert”
Copy the folder BPStatusBarAlert
to your project
First, you need the following import BPStatusBarAlert
import BPStatusBarAlert
Now, you can uses BPStatusBarAlert
simply like this
@IBAction func buttonTapped(_ sender: Any) {
BPStatusBarAlert()
.message(message: “Complete Sharing This Contents”)
.show()
}
Initialize BPStatusBarAlert
with no parameters, it will set up default value for property Default setting
So, If you want customize property, just call init method with parameters and chaning function
BPStatusBarAlert
class init method is composed below code
public init(duration: TimeInterval = 0.3, delay: TimeInterval = 2, position: AlertPosition = .statusBar)
So, if you change time interval in animations and position of BPStatusBarAlert
, using defaults paramaters
BPStatusBarAlert(duration: 0.3, delay: 2, position: .statusBar) // customize duration, delay and position
.message(message: “Complete Sharing This Contents”) // customize message
.messageColor(color: .white) // customize message color
.bgColor(color: .blue) // customize view’s background color
.completion { print(“completion closure will called”) } // customize completion(Did hide alert view)
.show() // Animation start
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...