• Stars
    star
    3,314
  • Rank 12,947 (Top 0.3 %)
  • Language
    Swift
  • License
    MIT License
  • Created almost 9 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A custom modal transition that presents and dismiss a controller with an expanding bubble effect.

CocoaPods Carthage compatible Swift 5.0 codebeat badge

A custom modal transition that presents and dismiss a controller inside an expanding and shrinking bubble.

Screenshot

BubbleTransition

Usage

Install through CocoaPods:

pod 'BubbleTransition', '~> 3.2.0'

use_frameworks!

Install through Carthage:

github "andreamazz/BubbleTransition"

Install through Swift Package Manager:

To integrate using Xcode:

File -> Swift Packages -> Add Package Dependency...

Enter package URL: https://github.com/andreamazz/BubbleTransition, and select the latest release.

Setup

Have your view controller conform to UIViewControllerTransitioningDelegate. Set the transitionMode, the startingPoint, the bubbleColor and the duration.

let transition = BubbleTransition()

public override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  let controller = segue.destination
  controller.transitioningDelegate = self
  controller.modalPresentationCapturesStatusBarAppearance = true
  controller.modalPresentationStyle = .custom
}

// MARK: UIViewControllerTransitioningDelegate

public func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
  transition.transitionMode = .present
  transition.startingPoint = someButton.center
  transition.bubbleColor = someButton.backgroundColor!
  return transition
}

public func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
  transition.transitionMode = .dismiss
  transition.startingPoint = someButton.center
  transition.bubbleColor = someButton.backgroundColor!
  return transition
}

You can find the Objective-C equivalent here.

Swipe to dismiss

You can use an interactive gesture to dismiss the presented controller. To enable this gesture, prepare the interactive transition:

let interactiveTransition = BubbleInteractiveTransition()

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  if let controller = segue.destination as? ModalViewController {
    controller.transitioningDelegate = self
    controller.modalPresentationStyle = .custom
    controller.modalPresentationCapturesStatusBarAppearance = true
    controller.interactiveTransition = interactiveTransition
    interactiveTransition.attach(to: controller)
  }
}

and implement interactionControllerForDismissal in your presenting controller:

func interactionControllerForDismissal(using animator: UIViewControllerAnimatedTransitioning) -> UIViewControllerInteractiveTransitioning? {
  return interactiveTransition
}

In the presented controller make sure to call finish() on the interactive gesture if you need to quickly dismiss from a button press instead. Check the sample code for more info.

You can decide the gesture threshold and the swipe direction:

interactiveTransition.interactionThreshold = 0.5
interactionThreshold.swipeDirection = .up

Properties

var startingPoint = CGPointZero

The point that originates the bubble.

var duration = 0.5

The transition duration.

var transitionMode: BubbleTranisionMode = .present

The transition direction. Either .present, .dismiss or .pop.

var bubbleColor: UIColor = .white

The color of the bubble. Make sure that it matches the destination controller's background color.

Checkout the sample project for the full implementation.

Author

Andrea Mazzini. I'm available for freelance work, feel free to contact me.

Want to support the development of these free libraries? Buy me a coffee β˜•οΈ via Paypal.

Contributors

Thanks to everyone kind enough to submit a pull request.

MIT License

Copyright (c) 2018-2020 Andrea Mazzini. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

AMScrollingNavbar

Scrollable UINavigationBar that follows the scrolling of a UIScrollView
Swift
6,053
star
2

AMPopTip

An animated popover that pops out a given frame, great for subtle UI tips and onboarding.
Swift
3,140
star
3

AMWaveTransition

Custom transition between viewcontrollers holding tableviews
Objective-C
2,376
star
4

SubtleVolume

Replace the system volume popup with a more subtle indicator.
Swift
1,200
star
5

AMTagListView

UIScrollView subclass that allows to add a list of highly customizable tags.
Objective-C
759
star
6

UITextField-Shake

UITextField category that adds shake animation
Objective-C
738
star
7

GearRefreshControl

A custom animation for the UIRefreshControl
Swift
618
star
8

UIView-Shake

UIView category that adds shake animation
Objective-C
492
star
9

UIView-draggable

UIView category that adds dragging capabilities
Objective-C
435
star
10

ViralSwitch

A UISwitch that infects its superview with its tint color.
Objective-C
333
star
11

AMBubbleTableView

AMBubbleTableView
Objective-C
215
star
12

SlideOutNavigation

SlideOut Navigation Controller for iOS.
Objective-C
210
star
13

AMDraggableBlurView

Draggable blurred view.
Objective-C
66
star
14

one-icon-a-day

My 2015's challenge: design an icon a day.
28
star
15

UIView-Notify

UIView category for simple user notifications
Objective-C
12
star
16

AMTextField

A UITextField subclass with some nifty animations
Objective-C
7
star
17

Gitorade

Simple iOS app for educational purposes
Objective-C
3
star
18

iOS2016

Sample project shown in class Β―\_(ツ)_/Β―
Swift
2
star
19

chatberry

A node.js+Express.js+socket.io chat
JavaScript
2
star
20

andreamazz.github.io

Syntax Error
HTML
1
star
21

zsh-peepcodelike

A Peepcode-like ZSH theme with dark background
1
star
22

whoisandrea.me

Code for the personal page http://whoisandrea.me/
CSS
1
star
23

AFHTTPRequestOperationManager-multipart

Adds multipart support for PUT and PATCH methods to the AFHTTPRequestOperationManager
Objective-C
1
star
24

pickdate-rails

Pickdate.js for Rails
Ruby
1
star
25

onealbum

One Album A Day. A simple rails blog
Ruby
1
star