how to add a view over window in uiviewcontroller

前端 未结 4 656
轮回少年
轮回少年 2021-01-24 20:19

Is it possible to add a subview over the window from a uiviewcontroller and then removing that also?

Thanks Pankaj

4条回答
  •  迷失自我
    2021-01-24 21:11

    Not sure what you mean...

    [self.view addSubview:yoursubview];
    
    [yoursubview removeFromSuperview];
    

    Over the window:

    [[[UIApplication sharedApplication] keyWindow] addSubview:yourview];
    

提交回复
热议问题