Description
Create ImageView for User or Group like Messenger app
MessengerBubbles alternatives and similar libraries
Based on the "UI" category.
Alternatively, view MessengerBubbles alternatives based on common mentions on social networks and blogs.
-
IQKeyboardManager
Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView. Neither need to write any code nor any setup required and much more. -
DZNEmptyDataSet
DISCONTINUED. A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display -
SkeletonView
☠️ An elegant way to show users that something is happening and also prepare them to which contents they are awaiting -
TTTAttributedLabel
A drop-in replacement for UILabel that supports attributes, data detectors, links, and more -
animated-tab-bar
:octocat: RAMAnimatedTabBarController is a Swift UI module library for adding animation to iOS tabbar items and icons. iOS library made by @Ramotion -
MGSwipeTableCell
An easy to use UITableViewCell subclass that allows to display swippable buttons with a variety of transitions. -
JTAppleCalendar
The Unofficial Apple iOS Swift Calendar View. Swift calendar Library. iOS calendar Control. 100% Customizable -
SWTableViewCell
An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders. -
JVFloatLabeledTextField
UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users -
XLForm
XLForm is the most flexible and powerful iOS library to create dynamic table-view forms. Fully compatible with Swift & Obj-C. -
SwipeCellKit
Swipeable UITableViewCell/UICollectionViewCell based on the stock Mail.app, implemented in Swift. -
Alerts & Pickers
Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date... -
SwiftEntryKit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps. -
TPKeyboardAvoiding
A drop-in universal solution for moving text fields out of the way of the keyboard in iOS -
PageMenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
SWRevealViewController
A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right ! -
Material Components
[In maintenance mode] Modular and customizable Material Design UI components for iOS -
expanding-collection
:octocat: ExpandingCollection is an animated material design UI card peek/pop controller. iOS library made by @Ramotion
InfluxDB - Purpose built for real-time analytics at any scale.
* 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 MessengerBubbles or a related project?
README
MessengerBubbles
[Banner](Screenshots/Banner.png?)
[App Image](Screenshots/gif.gif?)
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
Installation
CocoaPods
MessengerBubbles is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MessengerBubbles'
Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate CodableCloudKit into your project manually. Simply drag the Sources
Folder into your Xcode project.
Usage
From Storyboard
MessengerBubbles is a subview of UIView
[Storyboard](Screenshots/Storyboard.png?)
Just create a UIView
and replace the Custom Class with MessengerBubbles
You can choose if you want to enable the online bubble indicator, if the user or group is online or not, change the online buble color and border color.
Programmatically
You have many ways to create a MessengerBubbles
public init(size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
public init(images: [UIImage?]?,
size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
public init(urls: [String?]?,
size: CGFloat,
borderColor: UIColor = .white,
onlineBubbleColor: UIColor = PrivateConstants.onlineBubbleColor,
enableOnlineBubble: Bool = true,
isOnline: Bool = false)
Size is always requiered. All others properties have a default value.
MessengerBubbles(size: 60) // With size only
MessengerBubbles(size: 60, borderColor: .blue,
onlineBubbleColor: .yellow,
enabledOnlineBubble: false,
isOnline: false) // With custom values
MessengerBubbles(images: images,
size: 60) // With an array of UIImage at initialization
MessengerBubbles(urls: urls,
size: 60) // With an array of String at initialization
You can set images after MessengerBubbles
has been created.
If your array contains 1 element, it will create a single bubble.
By the way, if it contains 2 elements or more, it will create 2 bubbles even if it contains more than 2 elements.
public func setImages(with images: [UIImage?]?) // Set images with an array of UIImage
public func setImages(with urls: [String?]?) // Set images with an array of String
let bubble = MessengerBubbles(size: 60)
bubble.setImages(with: images)
//or
bubble.setImages(with: urls)
isOnline
and onlineBubbleColor
can be changed after initialization
bubble.isOnline = true // or false
bubble.onlineBubbleColor = .black // or whatever you want
Author
Laurent Grondin, [email protected]
Contributing
Contributions are very welcome 🙌
License
MessengerBubbles is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the MessengerBubbles README section above
are relevant to that project's source code only.