The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.
In Xcode navigate to File → Swift Packages → Add Package Dependency. Use this URL to add the dependency:
https://github.com/htmlprogrammist/EmojiPicker
Once you have your Swift package set up, adding as a dependency is as easy as adding it to the dependencies value of your Package.swift.
The CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate EmojiPicker into your Xcode project using CocoaPods, specify it in your Podfile:
pod 'EmojiPicker', :git => 'https://github.com/htmlprogrammist/EmojiPicker'
Manually
If you prefer not to use any of dependency managers, you can integrate manually. Put Sources/EmojiPicker folder in your Xcode project. Make sure to enable Copy items if needed and Create groups.
The direction of the arrow for EmojiPicker. The default value of this property is .up.
viewController.arrowDirection = .up
Horizontal inset
Inset from the sourceView border. The default value of this property is 0.
viewController.horizontalInset = 0
Is dismissed after choosing
Defines whether to dismiss emoji picker or not after choosing. The default value of this property is true.
viewController.isDismissedAfterChoosing = true
Custom height
Custom height for EmojiPicker. The default value of this property is nil.
viewController.customHeight = 300
Feedback generator style
Feedback generator style. To turn off, set nil to this parameter. The default value of this property is .light.
viewController.feedbackGeneratorStyle = .soft
Localization
Chinese 🇨🇳
English 🇬🇧
French 🇫🇷
German 🇩🇪
Hindi 🇮🇳
Russian 🇷🇺
Turkish 🇹🇷
Ukrainian 🇺🇦
You can also contribute your language to this list. Please, read following heading for more information.
❗️ Note that the languages are arranged in alphabetical order
Contributing
Contributions are welcomed and encouraged! Please see the Contributing guide.
To be a truly great community, we need to welcome developers from all walks of life, with different backgrounds, and with a wide range of experience. A diverse and friendly community will have more great ideas, more unique perspectives, and produce more great code. We will work diligently to make our community welcoming to everyone.
To give clarity of what is expected of our members, we have adopted the code of conduct defined by the Contributor Covenant. This document is used across many open source communities, and we think it articulates our values well. For more, see the Code of Conduct.
Experiments
To play around with the project, contribute to it, see how it works or adapt it for yourself:
Clone or fork this repository to yourself
Open Example App/EmojiPicker.xcworkspace file
Expand Pods target
Expand Development Pods and EmojiPicker directories. Here you can make your changes
Build & Run project to see an immediate result on an example application. Have fun!
EmojiPicker is a customizable package
implementing macOS-style emoji picker popover
Navigation
Installation
Ready for use with Swift 4.2+ on iOS 11.1+
Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the
swift
compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.In Xcode navigate to File → Swift Packages → Add Package Dependency. Use this URL to add the dependency:
Once you have your Swift package set up, adding as a dependency is as easy as adding it to the
dependencies
value of yourPackage.swift
.CocoaPods
The CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate
EmojiPicker
into your Xcode project using CocoaPods, specify it in yourPodfile
:Manually
If you prefer not to use any of dependency managers, you can integrate manually. Put
Sources/EmojiPicker
folder in your Xcode project. Make sure to enableCopy items if needed
andCreate groups
.Quick Start
Create
UIButton
and add selector as action:And then recieve emoji in the delegate method:
Usage
Delegate
Delegate for EmojiPicker to provide chosen emoji.
Source View
A view containing the anchor rectangle for the popover. You can create any
UIView
instances and set them as thesender
.Also, there is way more settings for configuration:
Selected emoji category tint color
Color for the selected emoji category. The default value of this property is
.systemBlue
.Arrow direction
The direction of the arrow for EmojiPicker. The default value of this property is
.up
.Horizontal inset
Inset from the
sourceView
border. The default value of this property is0
.Is dismissed after choosing
Defines whether to dismiss emoji picker or not after choosing. The default value of this property is
true
.Custom height
Custom height for EmojiPicker. The default value of this property is
nil
.Feedback generator style
Feedback generator style. To turn off, set
nil
to this parameter. The default value of this property is.light
.Localization
You can also contribute your language to this list. Please, read following heading for more information.
Contributing
Contributions are welcomed and encouraged! Please see the Contributing guide.
To be a truly great community, we need to welcome developers from all walks of life, with different backgrounds, and with a wide range of experience. A diverse and friendly community will have more great ideas, more unique perspectives, and produce more great code. We will work diligently to make our community welcoming to everyone.
To give clarity of what is expected of our members, we have adopted the code of conduct defined by the Contributor Covenant. This document is used across many open source communities, and we think it articulates our values well. For more, see the Code of Conduct.
Experiments
To play around with the project, contribute to it, see how it works or adapt it for yourself:
Example App/EmojiPicker.xcworkspace
filePods
targetDevelopment Pods
andEmojiPicker
directories. Here you can make your changes