how to add a view over window in uiviewcontroller

前端 未结 4 659
轮回少年
轮回少年 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:07

    It works for me:

    [[[[UIApplication sharedApplication] windows] objectAtIndex:0] addSubview:yourView];
    

提交回复
热议问题