Remove all the subviews from a UIScrollView?

前端 未结 5 1780
-上瘾入骨i
-上瘾入骨i 2021-02-02 06:08

How do I remove all of the subviews from a UIScrollview?

5条回答
  •  再見小時候
    2021-02-02 06:51

    In addition to Ricardo de Cillo's, in my case I had a table view that had imageviews in the subviews that I wanted to remove.

    for (UIView *v in self.tableview.subviews) {
      if ([v isKindOfClass:[UIImageView class]]) {
        [v removeFromSuperview];
      }
    }
    

    The removal of the ! in the if command, and change scrollview to self.tableview removed all images, but left the table view untouched.

提交回复
热议问题