분류 전체보기
-
[iOS] Apple Developer Program 멤버십 연장하기🍎 iOS/App Store Connect 2023. 8. 31. 21:09
첫 결제를 한 게 엊그제 같은데 벌써 1년이 지났습니다 🥹 눈물을 머금고 1년 연장을 해 보겠습니다 .. Apple Developer Account 페이지로 이동! https://developer.apple.com/account 멤버십 갱신 버튼을 눌러줍니다. 보안상 로그인이 한 번 더 들어가더라구요. 로그인을 거치면 위와 같이 결제정보를 입력하는 화면으로 이동하는데, 입력란을 다 채우고 넘어가봅니다. 입력한 사항이 맞는지 확인하고 결제진행 버튼을 눌러줍니다. KG이니시스 결제창에 카드정보 입력까지 마치면 결제가 완료됩니다. 피 같은 돈 129,000원이 공중분해되었습니다! 🥰 갱신 메일도 바로 전송됩니다! 올해도 앱 출시를 향해 화잇팅 💪
-
[iOS] App Store 심사 리젝 대응 (Guideline 4.0 - Design)🍎 iOS/App Store Connect 2023. 6. 30. 11:20
회원가입 및 회원탈퇴는 모두 앱 내에서 처리해야 한다는 내용의 리젝이었습니다. 저의 경우 회원가입과 회원탈퇴를 모두 사파리 앱을 열어 처리하도록 하고 있었어서 UX를 해친다는 이유로 리젝되었습니다. We noticed that the user is taken to the default web browser to sign in or register for an account, which provides a poor user experience. Next Steps To resolve this issue, please revise your app to enable users to sign in or register for an account in the app. You may also choose to im..
-
[iOS] App Store 심사 리젝 대응 (Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage)🍎 iOS/App Store Connect 2023. 6. 29. 15:27
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage We noticed that your app requests the user’s consent to access the photos, but doesn’t sufficiently explain the use of the photos in the purpose string. To help users make informed decisions about how their data is used, permission request alerts need to explain and include an example of how your app will use the requested informati..
-
[iOS] App Store 심사 리젝 대응 (Guideline 1.5 - Safety - Developer Information)🍎 iOS/App Store Connect 2023. 6. 29. 15:23
Guideline 1.5 - Safety - Developer Information The support URL specified in your app’s metadata, (필자가 제출했던 지원 URL 링크), does not properly navigate to the intended destination. Next Steps To resolve this issue, please revise your app’s support URL to ensure it directs users to a webpage with support information. (번역) 앱 메타데이터에 지정된 지원 URL이 원하는 대상으로 올바르게 이동하지 않습니다. 이 문제를 해결하려면 앱의 지원 URL을 수정하여 지원 정보가 ..
-
[iOS] App Store 심사 리젝 대응 (Guideline 1.2 - Safety - User Generated Content)🍎 iOS/App Store Connect 2023. 6. 29. 15:20
첫 번째 리젝 (Guideline 1.2 - Safety - User Generated Content) 앱 내에 유저가 글을 쓸 수 있는 기능이 존재하고, 신고기능이 없으면 리젝 당한다는 사실도 알고 있었어서 신고기능을 구현한 채로 심사를 넣었는데 리젝을 당했습니다. 대체 왜(Keep Your Head Down)?ㅠ We found in our review that your app includes user-generated content but does not have all the required precautions. Apps with user-generated content must take specific steps to moderate content and prevent abusive behav..
-
[iOS] HTML String으로 WKWebView 로드하기🍎 iOS/개발 2023. 6. 14. 17:48
HTML String을 UILabel에 적용하는 등의 간단한 작업은 String Extension을 추가해서 아래와 같이 사용할 수 있습니다. extension String { var htmlToAttributedString: NSAttributedString? { guard let data = self.data(using: .utf8) else { return nil } do { return try NSAttributedString(data: data, options: [.documentType: NSAttributedString.DocumentType.html, .characterEncoding:String.Encoding.utf8.rawValue], documentAttributes: nil) } ..
-
[iOS] Apple Developer Program 사용권 계약 업데이트 동의하기🍎 iOS/App Store Connect 2023. 6. 14. 14:21
앱 관리를 위해 App Store Connect에 접속하니 위와 같이 라이선스 업데이트 알림이 있었습니다.업데이트 내용에 동의하지 않으면 ⚠️기존 앱의 업데이트, 새로운 앱의 심사가 불가⚠️하다는 내용이었는데요.테스트플라이트 업로드까지 막히게 되니 (저도 알고 싶지 않았습니다) 빠르게 동의해주어야 합니다. 동의를 위해 개발자 계정 홈페이지(https://developer.apple.com/account)에 접속해 로그인해줍니다. 본인의 계정이 해당 Apple Developer Program의 소유자 계정이 아니라면 위와 같이 뜨고, 동의가 불가능합니다.따라서 [~님에게 문의하기]로 소유자 계정에 메일을 전달하거나 소유자쪽으로 직접 컨택하여 동의를 요청해야 합니다. 본인의 계정이 소유자 계정이라면 ..