美文网首页
IOS 移除UIView上所有的控件

IOS 移除UIView上所有的控件

作者: 夜涂黑 | 来源:发表于2020-11-21 11:21 被阅读0次

    第一种方法 (比较简单,一行搞定)

    [self.view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

    第二种方法

    for (UIView *view in[self.view subviews]) {

            [view removeFromSuperview];

        }

    相关文章

      网友评论

          本文标题:IOS 移除UIView上所有的控件

          本文链接:https://www.haomeiwen.com/subject/zyadiktx.html