본문 바로가기

푸시7

Swift 로컬에서 Notification(알림) 구현하기. import UserNotifications 우선 이렇게 임포트 하나 해주시구요. let userNotificationCenter = UNUserNotificationCenter.current() 클래스 딴 전역으로 하나 선언해줍니다. func callNotification(seconds: Double, title : String, body : String) { let notificationContent = UNMutableNotificationContent() notificationContent.title = title notificationContent.body = body let trigger = UNTimeIntervalNotificationTrigger(timeInterval: seconds, .. 2021. 12. 6.
IOS 14 버전 업데이트 이후 FCM푸시가 오지않는 현상 Build Settings 에서 Product Name이 한글이라면 영어로 변경해주시면 해결이 됩니다. 근데 이부분을 영어로 바꾸시게되면 앱 설치시 이름도 영문으로 표기되는데 그부분은 General에서 Display Name를 한글로 변경해주시면 됩니다. 2020. 11. 30.
IOS "Notification Service" 생성하기. 위 사진처럼 File - New - Target - Notification Content Extension 해주시면 간단하게 생성 완료됩니다..! 2020. 7. 21.
IOS 파이어베이스 Push 메세지 셋팅 ( FCM ) IOS 파이어베이스로 FCM푸시 메세지 셋팅하는 방법을 알아볼게요. 우선 코코아팟이 셋팅이 되어있어야 하기때문에 게시글을 참고해주세요. https://onedaycodeing.tistory.com/88 cocoapods(코코아) 설치 및 라이브러리 추가 및 설치가 끝난 후에 추가/ SnapKit IOS에서 외부 라이브러리를 사용할때 쓰이는 cocoapods를 사용해보도록 할게요. 터미널을 열어서 sudo gem install cocoapods 를 입력하여 cocoapods를 설치해줍니다. 패스워드를 입력하라고 나온다면 맥 로�� onedaycodeing.tistory.com 우선 애플 개발자 사이트에 접속해줍니다. https://developer.apple.com/ Apple Developer Softw.. 2020. 5. 19.