Question

I just used UIAlertView to show "loading..." with a progress bar showing how much data my app is loading so far. And as the HIG says, I'm doubt Apple reviewers will approve that action. Since the alert is not supposed to "alert" users when things are going on normally.

So, if I override it with a custom background, would the Apple reviewers still reject it? My code is something like this:

@interface MyCustomAlert : UIAlertView {
    UILabel *alertTextLabel;
    UIImage *backgroundImage;
}
Was it helpful?

Solution

I dont believe they will. I added a couple of text boxes and had no problem with multiple submissions.

OTHER TIPS

While it's probably not the most ideal solution, I also think they'll allow it. If they don't, you can cite their own iPhone commercial http://www.apple.com/iphone/gallery/ads/#office-large as having something nearly identical (if I'm understanding you correctly) in one of the feature applications (skip to 15 seconds into that "Office" iPhone commercial).

I dont think they will reject it for that, you can argue that the the dialog is used to "alert" the person of the progress of what the app is doing. Only way youll find out for sure though is when you submit the app, i would recommend to have a backup plan just in case, but I think it will be ok.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top