自定义的UIAlertView在IOS7中需要注意的问题

时间秒杀一切 提交于 2020-02-27 03:51:56

在IOS7之前,我们更改系统的UIAlertView,以实现自己想要的效果:

#pragma mark -- UIAlertViewDelegate

//实现代理增加网络指示器
- (void)willPresentAlertView:(UIAlertView *)alertView{
    indicator = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
    indicator.frame = CGRectMake(110, 20, 50, 50);
    
    [alertView addSubview:indicator];
    [indicator startAnimating];
    [indicator release];
}

在iOS7上不允许我们更改系统的UIAlertView,自己添加的控件将不再显示了。

解决方法:可以采用UIWindow的方式实现,网上有很多具体的做法,就不再描述了。

 

 
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!