1. 程式人生 > >提示框逐漸消失、漸隱檢視--iOS開發

提示框逐漸消失、漸隱檢視--iOS開發

只需要一句程式碼就可以實現漸隱檢視

UIView 執行這個方法“animateWithDuration:(幾秒消失*)時間 animations:^{}”就可以了

UIView *view = [[UIView alloc]initWithFrame:CGRectMake(100, 200, 50, 50)];

view.backgroundColor = [UIColorlightGrayColor];

[UIViewanimateWithDuration:3.0fanimations:^{

            view.alpha = 0.0f;

        }];

新增到ViewDidLoad方法裡面可以看到灰色檢視3秒後消失。