-
[iOS] Lottie 애니메이션 사용하기/iOS 📱 2023. 8. 7. 14:37
Lottie - Github GitHub - airbnb/lottie-ios: An iOS library to natively render After Effects vector animations An iOS library to natively render After Effects vector animations - GitHub - airbnb/lottie-ios: An iOS library to natively render After Effects vector animations github.com https://lottiefiles.com/kr/ 무료 로티 애니메이션, 모션 그래픽을 위한 모든 플러그인과 도구를 한 곳에 - 로티파일즈/LottieFi 로티파일즈/LottieFiles는 오픈소스 애니메이..
-
[iOS] 스토리보드 없이 개발하기/iOS 📱 2023. 8. 7. 12:06
Main 스토보드 삭제 프로젝트 → info.plist UISceneStoryboardFile 제거 Target → info.plist UIMainStoryboardFile 제거 func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. // If using a storyboard, the `window` property will automa..
-
[Swift] Array contains, insert, append/Swift 2023. 7. 27. 19:00
안녕하세요 아렉스입니다 ! 1. Element가 존재하지않으면 append 혹은 insert를 하고싶어요 -> Set 쓰면 되는거아님 ? 2. 순서는 보장받고싶어요 -> Set 으로 중복 제거하고 Array 정렬하면 되는거 아님 ? 3. 그 말도 맞지만,, 일단 오늘 상황이랑은 조금 다른거같아요. 이런 의식의 흐름의 구조를 거치다가 순서가 있는 자료구조를 어지럽히고 다시 정렬하는 방법말고는 없는건가 싶어서 고민했어요. extension으로 만드는 과정을 블로그에 공유하는 것도 좋겠다싶어서 글을 써봅니다. 네트워크 통신을 통해 섹션을 구성하는 의도로 작성된 코드입니다. enum SectionType { case giftBox case history } private var sectionList: [Sect..
-
[Push] 4. 환영해요 ! Push Notification Console/Push Notification 2023. 7. 23. 16:18
0. Apple Push Notification service (APNs) 와 작동방식 1. .p12 인증서와 .p8 인증키 차이 2. FCM으로 사용하는 방법을 알아보자. 3. FCM 없이 사용해보자. 안녕하세요 ! 아렉스입니다 ! 이번 WWDC 23 에서 Meet Push Notification Console 세션을 통해서 Push Notification Console 이 공개되었어요 ! 바로 구경해보시죠 ㄱㄱㄱ https://developer.apple.com/notifications/push-notifications-console/ Push Notifications Console - Notifications - Apple Developer The new Push Notifications Conso..
-
-
-
[Push] 1. .p12 인증서와 .p8 인증키 차이/Push Notification 2023. 7. 23. 16:13
0. [Push] Apple Push Notification service(APNs)와 작동방식 2. FCM으로 사용하는 방법을 알아보자. 3. FCM 없이 사용해보자. 4. 환영해요 ! Push Notification Console 안녕하세요 아렉스입니다 ! 이전 편에 이어서 말해볼게요 APNs 를 사용하기 위해서는 인증수단을 정해야했었죠 ! 인증수단의 종류는 certificate(인증서), 그 다음에 authentication tokens(인증 토큰) 두 가지가 있습니다. 각 인증 수단의 인증 방식과 인증 방식을 등록하는 방법을 대해서 알아보겠습니다. 인증서 방식 certificate(인증서)는 APNs 에 인증하는 기존 수단이라고 합니다. .p12 인증토큰 방식 authentication token..
-
[Push] 0. Apple Push Notification service (APNs) 와 작동방식/Push Notification 2023. 7. 23. 14:54
1. .p12 인증서와 .p8 인증키 차이 2. FCM으로 사용하는 방법을 알아보자. 3. FCM 없이 사용해보자. 4. 환영해요 ! Push Notification Console 안녕하세요 ! 아렉스입니다 iOS 앱에서 Push Notification 기능은 매우 보편적으로 사용되고있습니다. Push Notification Service에 대해서 알아보겠습니다. APNs 란 ? Apple Push Notifications Service의 줄임말로서 푸시 알림 전달을 가능하게 하는 백엔드입니다 APNs 작동방식 1. 알림에 대한 권한 요청이 승인이 된 경우 디바이스가 APNs에 토큰을 요청 2. APNs 에서 디바이스로 토큰을 전달 3. 디바이스에서 APP의 Server로 토큰을 전달 4. App의 Se..