Swift

IOS_ Local Notification 구현 및 에러

JunsC 2024. 3. 5. 00:05
728x90

IOS 로컬 푸시 노티피케이션을 구현하면서 나오는 에러에 대해 정리해보았다.

 

우선 로컬 노티피케이션 생성과 다루는 기초적인 부분에 대해 참조한 내용이다.

https://dokit.tistory.com/51

 

[iOS] 로컬 Push Notification(푸시 알림) 시간 · 주기 설정하기 + 관리

[iOS] 로컬 Push Notification(푸시 알림) 구현하기 [iOS] FCM으로 Push Notification (푸시 알림) 구현하기 FCM(Firebase Cloud Messaging)같은 경우는 공식문서와 설정 튜토리얼이 정말 잘 되어있어서 공식 문서를 따

dokit.tistory.com

 

https://medium.com/@setukanani_6029/local-notifications-with-swift-57d2e340dd1a

 

Local Notifications with Swift

Here you’ll learn how to schedule and handle local notifications into your iOS app with Swift.

medium.com

 

https://makeapppie.com/2017/02/27/short-repeating-notifications-in-ios/

 

Short Repeating Notifications in iOS

In an earlier post, I discussed the repeating local notifications in the UserNotification framework, but that discussion misses one detail: repeating notifications less than 60 seconds. The framewo…

makeapppie.com

 

 

그리고 IOS background mode 에서도 로컬 푸시노티피케이션이 잘 작동할 수 있도록 설정하는 내용이다

 

https://stackoverflow.com/questions/42319172/swift-3-how-to-make-timer-work-in-background

 

Swift 3 - How to make timer work in background

i am trying to do an application which can make a timer run in background. here's my code: let taskManager = Timer.scheduledTimer(timeInterval: 10, target: self, selector: #selector(self.

stackoverflow.com

 

https://stackoverflow.com/questions/50826548/timer-scheduledtimer-not-firing

 

Timer.scheduledTimer not firing

I am trying to calculate the time it takes a vehicle to go between two checkpoints. I have setup the following timer to achieve this. func startTimer() { if hasStarted == true &&

stackoverflow.com

 

 

https://blog.stackademic.com/timer-in-background-ios-swift-dbd229df522e

 

Timer in the Background (iOS Swift)

As developers, we often encounter scenarios where we need to schedule and manage timed operations. These can include updating user…

blog.stackademic.com

 

 

IOS 로 알람앱을 구현하면서 많은 에러와 도전이 있었다. 재미 있었고 이 부분에 대해 적어 놓으려고 했다.

 

 

728x90

'Swift' 카테고리의 다른 글

Swift_ 앱 업로드  (0) 2024.07.11
IOS_ .ipa 추출방법  (0) 2024.03.21
IOS_ xcode 아이폰 무선 연결  (0) 2024.03.09
IOS_ 진동 울리기  (0) 2024.03.07
SWIFT  (0) 2024.02.02
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."