0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

BulletinBoard 使ってみた

Posted at

今回の内容

BAADD4E6-4486-4440-B3FC-EE5067B95111_1_201_a.jpeg

コード

  • pod BulletinBoardPodfileに記述して、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を表示
    }

}

終わり

ご指摘、ご質問などありましたら、コメントまでお願い致します。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?