private let closeButton: UIButton = { let button = UIButton() button.setImage(UIImage(systemName: "xmark.circle.fill"), for: .normal) button.tintColor = .white button.addTarget(FullScreenImageViewController.self, action: #selector(didTapClose), for: .touchUpInside) return button }() 에러의 원인은 closeButton에서 #selector(didTapClose)를 설정할 때, 클래스 자체에 액션을 추가하려고 한 점 ..