iOS/Swift的頂部消息欄:Dodo

jopen 9年前發布 | 19K 次閱讀 Dodo iOS開發 移動開發

這是一個UI控件用于在iOS應用中顯示消息。它特別適合顯示一些短消息如:"Message sent", "Note saved", "No Internet connection".

  • Dodo includes styles for success, info, warning and error type messages.
  • The bar can have buttons with custom tap handlers.
  • Bar styles can be customized.
  • You can provide custom animations for showing and hiding the bar or use one of the default animation presets.

Setup

There are two ways you can add Dodo to your project.

Setup with Carthage (iOS 8+)

Alternatively, addgithub "exchangegroup/Dodo" ~> 2.0to your Cartfile and runcarthage update.

Setup with CocoaPods (iOS 8+)

If you are using CocoaPods add this text to your Podfile and runpod install.

use_frameworks!
pod 'Dodo', '~> 2.0'

Setup in Swift 1.2 project

Use the previous version of the library.

Usage

Addimport Dodoto your source code if you used Carthage or CocoaPods setup methods.

Dodo is an extension of UIView class. You can reach it by using using thedodoproperty in any instance of UIView or its subclass. It can be, for example, theviewproperty of your view controller.

Show and hide message bar

view.dodo.success("Everybody has won and all must have prizes.")
view.dodo.info("Extinction is the rule. Survival is the exception.")
view.dodo.warning("This world is but a canvas to our imagination.")
view.dodo.error("The perception of beauty is a moral test.")

view.dodo.hide()

If you are showing the bar in the root view you may need to provide top or bottom layout guides. This will prevent the message bar from overlapping with the status or the tab bar.

view.dodo.topLayoutGuide = topLayoutGuide
view.dodo.bottomLayoutGuide = bottomLayoutGuide
view.dodo.success("Success is how high you bounce when you hit bottom.")

iOS/Swift的頂部消息欄:Dodo

iOS/Swift的頂部消息欄:Dodo

iOS/Swift的頂部消息欄:Dodo

iOS/Swift的頂部消息欄:Dodo

Styling

Setdodo.styleproperty to style the message bar before it is shown. See the styling manual for the complete list of configuration options.

// Set the text color
view.dodo.style.label.color = UIColor.whiteColor()

// Set background color
view.dodo.style.bar.backgroundColor = DodoColor.fromHexString("#00000090")

// Close the bar after 3 seconds
view.dodo.style.bar.hideAfterDelaySeconds = 3

// Close the bar when it is tapped
view.dodo.style.bar.hideOnTap = true

// Show the bar at the bottom of the screen
view.dodo.style.bar.locationTop = false


Add buttons or icons

Setstyle.leftButtonandstyle.rightButtonproperties to show buttons or icons.

// Use a built-in icon
view.dodo.style.leftButton.icon = .Close

// Supply your image
view.dodo.style.leftButton.image = UIImage(named: "CloseIcon")

// Change button's image color
view.dodo.style.leftButton.tintColor = DodoColor.fromHexString("#FFFFFF90")

// Do something on tap
view.dodo.style.leftButton.onTap = { /* Button tapped */ }

// Close the bar when the button is tapped
view.dodo.style.leftButton.hideOnTap = true


iOS/Swift的頂部消息欄:Dodo

iOS/Swift的頂部消息欄:Dodo

Customize animation

Configure the animation effect of the bar before it is shown. See the animation wiki page for more information.

// Use existing animations
view.dodo.style.bar.animationShow = DodoAnimations.Rotate.show
view.dodo.style.bar.animationHide = DodoAnimations.SlideRight.hide

// Turn off animation
view.dodo.style.bar.animationShow = DodoAnimations.NoAnimation.show

Unit testing

Sometimes it is useful to verify which messages were shown by your app in unit tests. It can be done by setting an instance ofDodoMockclass toview.dodoproperty.

See the unit testing manual for more details.

Demo iOS app

This project includes a demo app.

iOS/Swift的頂部消息欄:Dodo

Alternative solutions

Here are some other message bar libraries for iOS:

項目主頁:http://www.baiduhome.net/lib/view/home/1434525030145

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!