꾸준히 안타치기

swift toast 라이브러리 본문

iOS/storyboard & code

swift toast 라이브러리

글자줍기 2022. 1. 1. 03:33
반응형

https://github.com/scalessec/Toast-Swift

 

GitHub - scalessec/Toast-Swift: A Swift extension that adds toast notifications to the UIView object class.

A Swift extension that adds toast notifications to the UIView object class. - GitHub - scalessec/Toast-Swift: A Swift extension that adds toast notifications to the UIView object class.

github.com

 

사용법 

1. 코코아팟 설치

2. 임포트하기 

import Toast_Swift

3. 사용할 곳에 넣기 

  // 토스트 띄우기
            // create a new style
            var style = ToastStyle()
            
            // this is just one of many style options
            style.messageColor = .white
            // present the toast with the new style
            self.view.makeToast("12자 이하로 써라!", duration: 3.0, position: .center, style: style)

스타일은 넣어도 되고, 빼도 된다.

반응형

'iOS > storyboard & code' 카테고리의 다른 글

CollectionView 사용법  (0) 2022.03.23
커스텀 다이얼로그  (0) 2022.01.01
Stack View  (0) 2021.12.27
액션시트 / 얼럿  (0) 2021.12.27
사진첩에서 이미지 가져오기 / 삭제하기  (0) 2021.12.26
Comments