我想让视图处于非活动状态并且像UIAlertView中的效果一样暗淡,如下所示,我希望在从url加载json时发生。将在中心移动一个活动指示器。
答案 0 :(得分:2)
这很简单,真的。尝试类似以下示例的内容。请务必将其作为子视图添加到所有其他视图之下。
UIView * modalBackground = [[UIView alloc] initWithFrame:self.view.bound];
[modalBackground setBackgroundColor: [UIColor blackColor]];
[modalBackground setAlpha: 0.5];