スーパービューからサブビューを削除して別のVCにプッシュすると、削除されたサブビューがすべてビューに再表示される問題があります。もしviewDidApperでも。事前にスーパービューからの削除が開始された後でもUIViewが再表示される
//HERE IS HOW I ADD VIEWS
func addusers() {
for user in 0...5 {
let radarButton = PRButton(frame: CGRect(x: 0, y: 0, width: itemSize.width, height: itemSize.height+14))
radarButton.profileButton?.setImage(UIImage(named: "dummy-avatar.png"), for: UIControlState())
radarButton.profileName.setTitle("test \(user)", for: .normal)
repeat {
let center = generateCenterPointInRadar()
radarButton.center = CGPoint(x: center.x, y: center.y)
} while (itemFrameIntersectsInOtherItem(radarButton.frame))
radarButton.profileButton?.addTarget(self, action: #selector(didTapUser), for: .touchUpInside)
radarButton.profileName?.addTarget(self, action: #selector(didTapUser), for: .touchUpInside)
self.addSubview(radarButton)
items.append(radarButton)
}
}
//HERE IS HOW I REMOVE VIEWS
func removeAllUsers() {
for view in self.subviews {
if view is PRButton {
view.removeFromSuperview()
}
}
items.removeAll()
}
//Remove from superview
override func removeFromSuperview() {
UIView.beginAnimations("", context: nil)
UIView.setAnimationDuration(1)
self.alpha = 0
UIView.setAnimationDidStop(Selector(("callSuperRemoveFromSuperview")))
UIView.commitAnimations()
}
fileprivate func callSuperRemoveFromSuperview() {
super.removeFromSuperview()
}
おかげ
ビューが別のビューコンテナ内にないのは確かですか? – Edu
@Eduダウンロードしてチェックできるテストプロジェクトが含まれていることを確信しています –