1

我想让视图像 UIAlertView 中的效果一样不活动和变暗,如下所示,我希望在从 url 加载 json 时发生。将有一个活动指示器在中心移动。

在此处输入图像描述

4

1 回答 1

2

这很简单,真的。试试下面的例子。请务必将其添加为所有其他视图下方的子视图。

UIView * modalBackground = [[UIView alloc] initWithFrame:self.view.bound];
[modalBackground setBackgroundColor: [UIColor blackColor]];
[modalBackground setAlpha: 0.5];
于 2012-08-31T05:12:54.777 回答