如何在UIAlertView,iOS中提供非活动背景效果?

时间:2012-08-31 05:07:53

标签: ios loading

我想让视图处于非活动状态并且像UIAlertView中的效果一样暗淡,如下所示,我希望在从url加载json时发生。将在中心移动一个活动指示器。

enter image description here

1 个答案:

答案 0 :(得分:2)

这很简单,真的。尝试类似以下示例的内容。请务必将其作为子视图添加到所有其他视图之下。

UIView * modalBackground = [[UIView alloc] initWithFrame:self.view.bound];
[modalBackground setBackgroundColor: [UIColor blackColor]];
[modalBackground setAlpha: 0.5];