BulletinBoard 사용해 보았습니다.
4856 단어 Swift
이번 내용
코드
pod BulletinBoard
를 Podfile
에 기술해, pod install
합시다. Podfile
pod 'BulletinBoard'
import UIKit
import BLTNBoard
class ViewController: UIViewController{
var itemManager:BLTNItemManager = {
let pageItem = BLTNPageItem(title: "練習")
pageItem.actionButtonTitle = "上のボタン" //上のButtonのタイトルを設定
pageItem.alternativeButtonTitle = "下のボタン" //下のButtonのタイトルを設定
pageItem.appearance.titleTextColor = .black //タイトルの色を設定
pageItem.appearance.actionButtonColor = .systemTeal //上のButtonの背景色を設定
pageItem.appearance.actionButtonTitleColor = .white //上のButtonのタイトルの色を設定
pageItem.appearance.alternativeButtonTitleColor = .black //下のButtonのタイトルの色を設定
pageItem.actionHandler = { _ in
//actionButtonが押された時の処理
print("上のボタンが押された")
}
pageItem.alternativeHandler = { _ in
//alternativeButtonが押された時の処理
print("下のボタンが押された")
}
return BLTNItemManager(rootItem: pageItem)
}()
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func showBulletinBoard(_ sender: UIButton) {
itemManager.showBulletin(above: self) //作成したBulletinBoardを表示
}
}
끝
지적, 질문 등 있으면, 코멘트까지 부탁드립니다.
Reference
이 문제에 관하여(BulletinBoard 사용해 보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/HiroUrata/items/373a32153ec0f1d8bc1c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(BulletinBoard 사용해 보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/HiroUrata/items/373a32153ec0f1d8bc1c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)