일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- UIButton
- IOS
- Realm
- view
- mac
- error
- Apple
- Swift
- Git
- 웹뷰
- rxswift
- Archive
- Session
- geofencing
- Xcode
- github
- 개발자
- window
- FLUTTER
- 한글
- Code
- 이미지
- MacOS
- iOS16
- JPA
- SwiftUI
- darkmode
- Firebase
- appstore
- Notification
- Today
- Total
목록Push (3)
EEYatHo 앱 깎는 이야기
요약 : 알람 설정 관련 코드들 특성을 분석해서 아래 코드 완성 // 최초 1번만 실행해도 괜찮음. // 계속 실행해도 괜찮지만, 팝업은 안뜨고 completion은 매번 실행됨. UNUserNotificationCenter.current().requestAuthorization(options: [.badge, .alert, .sound], completionHandler: { (granted, error) in print("requestAuthorization granted = \(granted)") if let e = error { print("error = \(e)") } }) // 매번 실행하기. 디바이스 토큰이 언제 바뀔지 모름. // 팝업이 뜨거나 하지 않음. 델리게이트로 APNS서버에 등록된..
1. 원격 브랜치 삭제하기 브랜치명에 origin을 붙히지 않는다. git push origin --delete [브랜치명] 2. 로컬 브랜치 삭제하기 마찬가지로 origin을 붙히지 않는다. git branch -d [브랜치명] 로컬, 원격 다 삭제하고 싶으면 위 2개를 실행하면 된다. git push origin --delete [브랜치명] git branch -d [브랜치명] 3. 로컬 브랜치 생성하고, 원격에도 생성 git branch [브랜치명] git push origin [브랜치명]
AppDelegate로 분기한다. deepLink func application(_ application: UIApplication, handleOpen url: URL) -> Bool { ... let deepLinkUrl = url ... } universerLink func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { ... let universalLinkUrl = userActivity.webpageURL ... } push func application(_ a..