Add view over tableview (UITableViewController)

前端 未结 8 2051
[愿得一人]
[愿得一人] 2020-12-09 10:39

Situation: I\'ve got a UITableViewController loading some data asynchronously from a service. During this time I would like to place a full screen (except n

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 10:53

    UIWindow* window = [[UIApplication sharedApplication].delegate.window;
    [window addSubview: your-overlayview];
    

提交回复
热议问题