Easy to use and highly configurable autocomplete view that is attachable to any UITextField
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ sudo gem install cocoapods
CocoaPods 1.13.0+ is required.
To integrate LUAutocompleteView
into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
use_frameworks!
target '<Your Target Name>' do
pod 'LUAutocompleteView'
end
Then, run the following command:
$ pod install
To integrate using Apple's Swift Package Manager, add the following as a dependency to your Package.swift
:
.package(url: "https://github.com/LaurentiuUngur/LUAutocompleteView", from: Version(5, 0, 0))
If you prefer not to use either of the before mentioned dependency managers, you can integrate LUAutocompleteView
into your project manually.
LUAutocompleteView
into your project.import LUAutocompleteView
view.addSubview(autocompleteView)
textField
property the text field to which the autocomplete view you want be attached.autocompleteView.textField = textField
autocompleteView.dataSource = self
autocompleteView.delegate = self
LUAutocompleteViewDataSource
and LUAutocompleteViewDelegate
protocols.// MARK: - LUAutocompleteViewDataSource
extension ViewController: LUAutocompleteViewDataSource {
func autocompleteView(_ autocompleteView: LUAutocompleteView, elementsFor text: String, completion: @escaping ([String]) -> Void) {
let elementsThatMatchInput = elements.filter { $0.lowercased().contains(text.lowercased()) }
completion(elementsThatMatchInput)
}
}
// MARK: - LUAutocompleteViewDelegate
extension ViewController: LUAutocompleteViewDelegate {
func autocompleteView(_ autocompleteView: LUAutocompleteView, didSelect text: String) {
print(text + " was selected from autocomplete view")
}
}
LUAutocompleteTableViewCell
.func set(text: String)
from LUAutocompleteTableViewCell
that is called every time when given text should be displayed by the cell.import UIKit
import LUAutocompleteView
final class CustomAutocompleteTableViewCell: LUAutocompleteTableViewCell {
// MARK: - Base Class Overrides
override func set(text: String) {
textLabel?.text = text
textLabel?.textColor = .red
}
}
autocompleteCell
property your custom autocomplete cell.autocompleteView.autocompleteCell = CustomAutocompleteTableViewCell.self
link |
Stars: 54 |
Last commit: 5 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics