Instead of add placeholderLabel to textView, you should add placeholderLabel to view of NameViewController:
Change this line textView.addSubview(placeholderLabel) to view.addSubview(placeholderLabel). There might be hidden logic in UITextView to interact with its subviews which cause your bug