HoneycombView alternatives and similar libraries
Based on the "UI" category.
Alternatively, view HoneycombView alternatives based on common mentions on social networks and blogs.
-
Charts
Beautiful charts for iOS/tvOS/OSX! The Apple side of the crossplatform MPAndroidChart. -
Animated Tab Bar
RAMAnimatedTabBarController is a Swift module for adding animation to tabbar items. -
Material
Express your creativity with Material, an animation and graphics framework for Google's Material Design and Apple's Flat UI in Swift. -
LTMorphingLabel
Graceful morphing effects for UILabel written in Swift. -
NVActivityIndicatorView
Collection of nice loading animations. -
JTAppleCalendar
The final Apple calendar you will ever try. Built for iOS in Swift. -
AMScrollingNavbar
Scrollable UINavigationBar that follows the scrolling of a UIScrollView. -
SwiftMessages
A very flexible message bar for iOS written in Swift. -
TextFieldEffects
Several ready to use effects for UITextFields -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
SwipeCellKit
Swipeable UITableViewCell based on the stock Mail.app. -
ImagePicker
A nicely designed and super easy to use ImagePicker. -
Scrollable-GraphView
An adaptive scrollable graph view for iOS to visualise simple discrete datasets. Written in Swift. Originally written for a small personal project. -
Material Components for iOS
Modular and customizable Material Design UI components for iOS -
Alerts Pickers
Advanced usage of UIAlertController with TextField, DatePicker, PickerView, TableView and CollectionView. -
Macaw
Powerful and easy-to-use vector graphics Swift library with SVG support. -
PermissionScope
A Periscope-inspired way to ask for iOS permissions. -
SideMenu
Simple side menu control for iOS in Swift inspired by Facebook. Right and Left sides. No coding required. -
BulletinBoard
Generates and manages contextual cards displayed at the bottom of the screen. -
SPPermission
Simple request permission with native UI and interactive animation. -
ESTabBarController
A highly customizable TabBarController component, which is inherited from UITabBarController. -
Instructions
Create walkthroughs and guided tours (coach marks) in a simple way, with Swift. -
NotificationBanner
The easiest way to display highly customizable in app notification banners in iOS. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. -
TLYShyNavBar
Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars! -
ActiveLabel
UILabel drop-in replacement supporting Hashtags (#), Mentions (@) and URLs (http://). -
PopupDialog
A simple, customizable popup dialog. Replaces UIAlertController alert style. -
StarWars.iOS
Transition animation to crumble view-controller into tiny pieces. -
BouncyLayout
Is a collection view layout that makes your cells bounce. -
Persei
Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift. -
DOFavoriteButton
Cute Animated Button written in Swift. -
PaperOnboarding
PaperOnboarding is a material design UI slider. -
CircleMenu
CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. -
KMNavigationBarTransition
A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically. -
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros. -
XLActionController
Fully customizable and extensible action sheet controller written in Swift 2.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of HoneycombView or a related project?
README
HoneycombView
iOS UIView for Honeycomb layout include with photoBrowser.
[sample](Screenshots/HoneycombViewSample1.gif)
Requirements
- iOS 8.0+
- Swift 2.0+
- ARC
Installation
CocoaPods
HoneycombView is available on CocoaPods. Just add the following to your project Podfile:
pod 'HoneycombView'
use_frameworks!
Carthage
To integrate HoneycombView into your Xcode project using Carthage, specify it in your Cartfile:
github "suzuki-0000/HoneycombView"
Manually
Add the HoneycombView.swift
directly into your project.
Usage
The easiest way is to instantiate its class in ViewController, configure it, and add it to a view. If you want to know more details, see the ViewController of the example project.
- With Images ```swift // do some for images let images = UIImage
let honeycombView = HoneycombView(frame: CGRectMake(0, 0, view.frame.width, view.frame.height)) honeycombView.diameter = 160.0 honeycombView.margin = 1.0 honeycombView.configrationForHoneycombViewWithImages(images) view.addSubview(honeycombView)
honeycombView.animate(duration: 2.0)
You can also use from URL(String) with NSCache.
- With Images from URL
```swift
for i in 0..<30{
let user = User(id: i, profileImageURL: "https://placehold.jp/150x150.png")
users.append(user)
}
let honeycombView = HoneycombView(frame: CGRectMake(0, 0, view.frame.width, view.frame.height))
honeycombView.diameter = 100.0
honeycombView.margin = 1.0
honeycombView.configrationForHoneycombViewWithURL(users.map{ $0.profileImageURL })
view.addSubview(honeycombView)
Other parameter is for size of HoneycombView. Set margin parameter to 0 if you don't need margin for honeycomb.
- diameter
- margin
[sample](Screenshots/HoneycombViewSample2.gif)
Photos from
License
HoneycombView is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the HoneycombView README section above
are relevant to that project's source code only.