CNPPopupController alternatives and similar libraries
Based on the "Popup" category.
Alternatively, view CNPPopupController alternatives based on common mentions on social networks and blogs.
-
SwiftEntryKit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps. -
PopupDialog
A simple, customizable popup dialog for iOS written in Swift. Replaces UIAlertController alert style. -
LNPopupController
LNPopupController is a framework for presenting view controllers as popups of other view controllers, much like the Apple Music and Podcasts apps. -
STPopup
STPopup provides STPopupController, which works just like UINavigationController in popup style, for both iPhone and iPad. It's written in Objective-C and compatible with Swift. -
MMPopupView
Pop-up based view(e.g. alert sheet), can be easily customized. -
KLCPopup
A simple and flexible class for presenting custom views as a popup in iOS. -
AZDialogViewController
A highly customizable alert dialog controller that mimics Snapchat's alert dialog. -
MIBlurPopup
MIBlurPopup lets you create popups with a blurred background -
PopupController
PopupController is a controller for showing temporary popup view. -
PopupWindow
PopupWindow is a simple Popup using another UIWindow in Swift -
SubscriptionPrompt
Subscription View Controller like the Tinder uses -
NMPopUpView
Simple Swift class for iOS that shows nice popup windows with animation. -
PBPopupController
A framework for presenting bars and view controllers as popup, much like the look and feel of Apple Music App. -
PopupKit
Simple way to present custom views as a popup in iOS and tvOS.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CNPPopupController or a related project?
README
CNPPopupController
THIS PROJECT IS DEPRECATED I no longer have the time to maintain this project, sorry. I am no longer making any changes to this codebase. Please feel free to fork it, change whatever you want, and publish it anywhere you like. I'll leave this repo open until September 1, 2019 so that you can get what you need.
Introduction
CNPPopupController is a simple and versatile class for presenting a custom popup in a variety of fashions. It includes a many options for controlling how your popup appears and behaves.
Please feel free to contribute to this project, open issues, make suggestions and submit pull-requests. If you use this project in your app, let me know. I'd love to see what you do with it.
Installation
Available in CocoaPods
pod 'CNPPopupController'
Usage
(See sample Xcode project in /CNPPopupControllerExample
)
Creating a Popup
Create a popup with custom animations and behaviors. Customizations can also be accessed via properties on the CNPPopupTheme
instance:
- (instancetype)initWithContents:(NSArray *)contents;
contents
only accepts an array of UIView
objects.
Presentation
- (void)presentPopupControllerAnimated:(BOOL)flag;
- (void)dismissPopupControllerAnimated:(BOOL)flag;
Customization
A CNPPopupTheme
instance can be created and assigned to the theme
property of a CNPPopupController
instance.
@property (nonatomic, strong) UIColor *backgroundColor;
@property (nonatomic, assign) CGFloat cornerRadius;
@property (nonatomic, assign) UIEdgeInsets popupContentInsets;
@property (nonatomic, assign) CNPPopupStyle popupStyle;
@property (nonatomic, assign) CNPPopupPresentationStyle presentationStyle;
@property (nonatomic, assign) CNPPopupMaskType maskType;
@property (nonatomic, assign) BOOL dismissesOppositeDirection;
@property (nonatomic, assign) BOOL shouldDismissOnBackgroundTouch;
@property (nonatomic, assign) BOOL movesAboveKeyboard;
@property (nonatomic, assign) CGFloat contentVerticalPadding;
@property (nonatomic, assign) CGFloat maxPopupWidth;
@property (nonatomic, assign) CGFloat animationDuration;
Notes
Deployment
CNPPopupController
works on iOS 6 - iOS 10
Credits
CNPPopupController was created by Carson Perrotti
Version History
September 15, 2016 v0.3.3
- Content layout fixes
- Better swift support
July 14, 2016 v0.3.2
- Fixes an issue where content would not be perfectly centred.
- Project compatibility fixes to prevent
duplicate symbols
errors. - Added property to adjust animation transition duration.
September 13, 2015 v0.3.1
- Sets
movesAboveKeyboard
toYES
in the default theme.
September 11, 2015 v0.3.0
- Support for iOS 9 and a few bug fixes.
August 30, 2015 v0.2.3
- Lower minimum required OS version to 6.0, since it works there anyway.
August 16, 2015 v0.2.2
- Bug fix for centering the popup above the keyboard when presented. Thanks to Nicholas for the proactive help on this one.
June 14th, 2015 v0.2.0
- Completely rewritten. Started from the bottom, now we're here.
- There are some minor API changes in v0.2.0. I tried to keep it as close to the last version as possible. See the example project if you need some help getting it set up.
- Custom view support (You can add anything, as it's contents as long as it is a UIView or subclass of UIView
- Lots of bug fixes
*Note that all licence references and agreements mentioned in the CNPPopupController README section above
are relevant to that project's source code only.