我想在执行后台线程时使用某种形式的加载显示。我曾考虑过使用 anActivity Indicator view
但我觉得它本身还不够。我希望能够在加载过程中阻止用户交互,因此我考虑将它托管在 UIAlertView 上。但是我看到 Apple 声明你The UIAlertView class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private and must not be modified.
因此我犹豫是否将加载指示器放入 UIAlertView。
我在这里查看了其他示例,其中一些建议了该Custom UIAlertView
方法。我只是想知道最好的方法或方向是什么?
如果我自定义 UIAlertView,我认为应用程序将被拒绝是正确的吗?
谢谢