for (NSInteger i=[self.view.subviews count]-1; i>=0; i--) {
[[self.view.subviews objectAtIndex:i] removeFromSuperview];
}
先頭から行うと、取り除くごとにsubviewsの要素が前に詰められて
奇数番目のsubviewしか取り除けないので後ろから取り除く。
Go to list of users who liked
More than 5 years have passed since last update.
for (NSInteger i=[self.view.subviews count]-1; i>=0; i--) {
[[self.view.subviews objectAtIndex:i] removeFromSuperview];
}
先頭から行うと、取り除くごとにsubviewsの要素が前に詰められて
奇数番目のsubviewしか取り除けないので後ろから取り除く。
Register as a new user and use Qiita more conveniently
Go to list of users who liked