Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让视图像 UIAlertView 中的效果一样不活动和变暗,如下所示,我希望在从 url 加载 json 时发生。将有一个活动指示器在中心移动。
这很简单,真的。试试下面的例子。请务必将其添加为所有其他视图下方的子视图。
UIView * modalBackground = [[UIView alloc] initWithFrame:self.view.bound]; [modalBackground setBackgroundColor: [UIColor blackColor]]; [modalBackground setAlpha: 0.5];