swift 썸네일형 리스트형 swift에서 firebase를 활용한 facebook로그인 예제 Swuft Login With Firebase 화면 디자인 페이스북에서 API KEY를 발급받는 내용은 생략사용할 모듈 Podfile pod 'Firebase/Core' pod 'Firebase/Auth' pod 'Firebase/Database' pod 'Firebase/Storage' pod 'FBSDKLoginKit' //페북 로그인을 위한 pod //스위프트 키체인 랩퍼는 로그인에 성공한 토큰값을 스마트폰에 저장해야 다시 로그인 없이 접근할 수 있는데 //이때 키값 보안에 이슈가 있어 암호화 저장하는 모듈이다. pod 'SwiftKeychainWrapper' 뷰컨트롤러 class SignInVC: UIViewController { //아이디와 이메일의 값을 받는다 @IBOutlet weak var.. 더보기 [swift3] UserNotifications IOS10 새기능 사용해보기 [swift3] UserNotifications ios10 UserNotifications ios10부터 UserNotification이 생겼다. 이제 조금 더 쉽게 사용자에게 메세지를 보낼 수 있다. 먼저 중앙에 버튼을 만들어보자 기본텍스트 출력 ViewController.swift class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //권한 요청 부분 //사용자에게 alert, badge, sound요청을 한다. UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound], completion.. 더보기 이전 1 다음