https://github.com/ajijoyo/ajmessage
Simple popup message
https://github.com/ajijoyo/ajmessage
ios message notification popup swift ui
Last synced: 4 months ago
JSON representation
Simple popup message
- Host: GitHub
- URL: https://github.com/ajijoyo/ajmessage
- Owner: ajijoyo
- License: mit
- Created: 2018-12-19T04:23:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-13T14:11:54.000Z (almost 6 years ago)
- Last Synced: 2025-06-24T11:42:27.803Z (5 months ago)
- Topics: ios, message, notification, popup, swift, ui
- Language: Swift
- Size: 756 KB
- Stars: 35
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AJMessage
[]()
[](https://travis-ci.org/ajijoyo/AJMessage)
[](https://cocoapods.org/pods/AJMessage)
[](https://cocoapods.org/pods/AJMessage)
[](https://cocoapods.org/pods/AJMessage)
## Example

To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
```
XCode 10.2
Swift 5
```
## Installation
AJMessage is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod 'AJMessage'
```
## Changelog
- separated function show with initial view :
```swift
AJMessage(title: title, message: msg).show()
//or
let asd = AJMessage(title: title, message: msg)
asd.show()
```
- function callback `onHide` has deprecated and changed to `onDismiss` and have value `AJMessage` class
- add new configuration of backgroundcolor `setBackgroundColor` for each status
- add new configuratoin of icon `setImage` for each status
## Used
Simple used
```swift
AJMessage.show(title: "This is title", message: "message for description",position:.top).onHide {
print("did dissmiss")
}
```
Can use NSAttributeString
```swift
let title = NSAttributedString(string: "Title", attributes: [.font:UIFont.systemFont(ofSize: 15)])
let msg = NSMutableAttributedString(string: "aasdasd", attributes: [.font:UIFont.systemFont(ofSize: 14)])
let attach = NSTextAttachment()
attach.image = UIImage(named:"plus")
msg.append(NSAttributedString(attachment: attach))
msg.append(NSAttributedString(string: "asdasdasdasd asdasdasdasd asdasdasdasd asdasdasdasd asdasd"))
AJMessage.show(title: title, message: msg,position:.top).onHide {
print("did dissmiss")
}
```
customize config
for spesific view present
```swift
var config = AJMessageConfig()
/**
config.titleFont
config.setBackgroundColor(.cyan, status: .success)
config.setImage(UIImage(named:"warning"), status: .info)
*/
AJMessage.show(title: "This is title", message: "message for description", config: config)
```
for global view present
just set `AJMessageConfig.shared` on `didFinishLaunchingWithOptions`
```swift
var config = AJMessageConfig.shared
/**
config.titleFont
config.setBackgroundColor(.cyan, status: .success)
config.setImage(UIImage(named:"warning"), status: .info)
*/
```
## Author
ajijoyo, self.ajiejoy@gmail.com
## License
AJMessage is available under the MIT license. See the LICENSE file for more info.