iOS10부터 이미지 푸시를 보낼 수 있다.iOS10에서는 앱 실행 중에도 앱내에서 처리 없이 상단 푸시를 볼 수 있다. (단, RemoteNotification 등록시 UNUserNotificationCenter를 사용하였을 경우) 우선 AppDelegate에서 푸시를 등록 해보자.let center = UNUserNotificationCenter.current()center.requestAuthorization(options: [.alert, .sound, .badge]) { (granted, error) in print("granted = \(granted)")}center.delegate = self application.registerForRemoteNotifications() UNUserNot..
UITextFiled나 UITextView에서 입력 글자 제한을 해야되는 경우가 있다. UITextFieldDelegate의 shouldChangeCharactersIn 메서드를 이용해서 아래와 같이 사용하는게 보통의 경우이다.기존 textField의 텍스트와 새로 입력 받은 string을 합쳐서 길이를 제한하는 코드이다. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { guard let text = textField.text as NSString? else {return false} let newString = text.repl..
- Total
- Today
- Yesterday
- setAlternateIconName
- Create a New Key
- 앱 아이콘
- UITextFieldTextDidChange
- apns
- Notification Service Extension
- Easy APNs Provider
- AppIcon
- httpCookieStore
- mutable-content
- ios
- 인증 키
- whose view is not in the window hierarchy
- UNUserNotificationCenter
- swift
- WebSiteDataStore
- appDelegate
- NotificationCenter
- presentedViewController
- UIApplication
- UITextFieldDelegate
- shouldChangeCharactersIn
- UITextFiled
- UNUserNotificationCenterDelegate
- 이미지 푸시
- iOS Keys
- swift3
- 리치 푸시
- wkwebview
- iOS10
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |