iOS 7 を使用してビューからすべてのボタンを削除するにはどうすればよいですか?
以前のバージョンの iOS で動作するコードは次のとおりです。
for(UIView *view in cell.subviews){
if([view isMemberOfClass:[UIButton class]]){
[(UIButton *)view removeFromSuperview];
}
}