- В файле pod раскомментируйте use_frameworks! линия, обновите модуль, затем соберите проект
- Импорт модуля 'YLLongTapShare' в контроллере представления
- Написать остаток кода:)
Простой пример:
import UIKit
import YLLongTapShare
class TestViewController: UIViewController, YLLongTapShareDelegate {
@IBOutlet weak var tapShareView: YLLongTapShareView!
override func viewDidLoad() {
super.viewDidLoad()
self.tapShareView.delegate = self;
self.tapShareView.add(YLShareItem(icon: UIImage(named: "test1"), andTitle: "test1"))
self.tapShareView.add(YLShareItem(icon: UIImage(named: "test2"), andTitle: "test2"))
self.tapShareView.add(YLShareItem(icon: UIImage(named: "test3"), andTitle: "test3"))
}
func longTapShare(_ view: UIView!, didSelectShareTo item: YLShareItem!, with index: UInt) {
print("longTapShare \(item.title)")
}
func colorOfShareView() -> UIColor! {
return UIColor.red
}
}