home > [Objective-C] UIViewにaddSubviewしたものを削除する方法
[Objective-C] UIViewにaddSubviewしたものを削除する方法
January 07, 2013
removeFromSuperview
[_label1 removeFromSuperview];
[_label1 release];
UIView *_sampleView = [[UIView alloc] init];
// _sampleViewを追加する。
[self.view addSubview: _sampleView];
//削除
[_sampleView removeFromSuperview];