Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anatoliyv/InfoView
Swift based simple information view with pointed arrow.
https://github.com/anatoliyv/InfoView
Last synced: 3 months ago
JSON representation
Swift based simple information view with pointed arrow.
- Host: GitHub
- URL: https://github.com/anatoliyv/InfoView
- Owner: anatoliyv
- License: mit
- Archived: true
- Created: 2016-05-12T11:50:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-02-15T12:12:21.000Z (over 3 years ago)
- Last Synced: 2024-08-06T06:45:30.089Z (3 months ago)
- Language: Swift
- Size: 1.39 MB
- Stars: 60
- Watchers: 2
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - InfoView - Swift based simple information view with pointed arrow. (Walkthrough / Intro / Tutorial / Web View)
- awesome-swift - InfoView - Simple information view with pointed arrow. (Libs / UI)
- awesome-ios-star - InfoView - Swift based simple information view with pointed arrow. (Walkthrough / Intro / Tutorial / Web View)
- awesome-swift - InfoView - Swift based simple information view with pointed arrow. ` 📝 5 years ago ` (UI [🔝](#readme))
README
# InfoView
View to show small text information blocks with arrow pointed to another view.In most cases it will be a button that was pressed.
![infoview5](https://cloud.githubusercontent.com/assets/1595032/15215075/30e1f68e-1859-11e6-9cc9-cdf98d013b3c.gif)
![](https://travis-ci.org/anatoliyv/InfoView.svg?branch=master)
[![Version](https://img.shields.io/cocoapods/v/InfoView.svg?style=flat)](http://cocoapods.org/pods/InfoView)
[![License](https://img.shields.io/cocoapods/l/InfoView.svg?style=flat)](http://cocoapods.org/pods/InfoView)
[![Platform](https://img.shields.io/cocoapods/p/InfoView.svg?style=flat)](http://cocoapods.org/pods/InfoView)## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
## Installation
#### Swift3
Swift3 support implemented in this [branch](https://github.com/anatoliyv/InfoView/tree/swift3).
#### CocoaPods
InfoView is available through [CocoaPods](http://cocoapods.org/pods/InfoView). To install
it, simply add the following line to your Podfile:```
pod "InfoView"
```#### Manually
1. Download and drop ```/InfoView``` folder in your project.
2. Congratulations!## Simple appearance
```
let infoView = InfoView(text: "Your message here")
infoView.show(onView: view, centerView: button)
```
where `view` is view of your visible view controller, `centerView` is a view where arrow will be pointed to
## Delegation
You can set a delegate and get events when view will appear/hide:
```
infoView.delegate = self
// In your delegate class
func infoViewDidShow(view: InfoView) {
print("Now visible")
}
```
## Customization
Set arrow position. In this case you will be responsible for possible errors (for example if there are not enough space to show text etc.)
```
infoView.arrowPosition = .Left
```
Set animation:
```
infoView.animation = InfoViewAnimation.None // Without animation
infoView.animation = InfoViewAnimation.FadeIn // FadeIn animation
infoView.animation = InfoViewAnimation.FadeInAndScale // FadeIn and Scale animation
```
Set custom font:
```
infoView.font = UIFont(name: "AvenirNextCondensed-Regular", size: 16)
```
Set custom text color:
```
infoView.textColor = UIColor.grayColor()
```
Set custom background color:
```
infoView.backgroundColor = UIColor.blackColor()
```Set custom layer properties:
```
infoView.layer.shadowColor = UIColor.whiteColor().CGColor
infoView.layer.cornerRadius = 15
infoView.layer.shadowRadius = 5
infoView.layer.shadowOffset = CGPoint(x: 2, y: 2)
infoView.layer.shadowOpacity = 0.5
```
## Hide with a delay
Hide InfoView after delay automatically```
infoView.hideAfterDelay = 2
```## ToDo
- [ ] More animations
- [ ] Support long text messages
- [ ] Support NSAttributedString's for formatted text## Author
Anatoliy Voropay, [email protected]
## Contributors
Thank you all!
* [lfarah](https://github.com/lfarah)
## License
InfoView is available under the MIT license. See the LICENSE file for more info.