P
P
prrrrrrr2019-09-24 20:51:10
Apple App Store
prrrrrrr, 2019-09-24 20:51:10

Apple's response when submitting to the AppStore: We noticed that several screens of your app were laid out in a way that made it difficult to use your app?

Tell me, I sent the application to the AppStore for verification. The answer came:


We noticed that several screens of your app were crowded or laid out in a way that made it difficult to use your app.
Next Steps
To resolve this issue, please revise your app to ensure that the content and controls on the screen are easy to read and interact with.
Please see attached screenshot for details.

5d8a568e663bd319522988.png
Actually the code itself:
ViewController.swift:
import UIKit
import WebKit

class ViewController: UIViewController {

    @IBOutlet weak var WebView: WKWebView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        let url = URL(string: "https://example.com")
        let request = URLRequest(url: url!)
        
        WebView.load(request)
    }
}

How can this issue be resolved? Where to dig?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
alfari0n, 2019-09-25
@alfari0n

We need to change the UX interface a bit. You wrote that everything is too grouped. Place the button below, it will not be possible to press it when holding the phone with one hand, you will have to intercept the phone with both hands. Sweep everything closer to the middle and put the login button below. See picture as an example: 5d8b5848c4fca754446861.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question