리젝 사항
- iPad 디바이스에서 이미지 추가하기 버튼을 클릭했을때, Crash
=> iPad 에서 actionSheet 를 띄울때, 위치를 잡아줘야 했다.
if UIDevice.current.userInterfaceIdiom == .pad {
if let popoverController = alert.popoverPresentationController {
popoverController.sourceView = self.view
popoverController.sourceRect = CGRect(x: self.view.bounds.midX, y: self.view.bounds.midY, width: 0, height: 0)
popoverController.permittedArrowDirections = []
self.present(alert, animated: true, completion: nil)
}
} else {
self.present(alert, animated: true, completion: nil)
}
### **Guideline 2.1 - Information Needed**
We have started the review of your app, but we are not able to continue because we need additional information about your app.
**Next Steps**
To help us proceed with the review of your app, please review the following questions and provide as much detailed information as you can.
- Does your app access any paid content or services?
- What are the paid content or services?
- Do individual customers pay for the content or services?
- If no, does a company or organization pay for the content or services?
- Where do they pay, and what's the payment method?
- If users create an account to use your app, are there fees involved?
- How do users obtain an account?