在我的appdelegate中,我想检查一下globUs.hasName.如果是的话,我希望Entry Point应用程序成为我的main故事板.如果不是,我希望Entry Point应用程序成为我的newUser故事板.如何设置应用的入口点?如果我不能,实现此功能的最有效方法是什么?
我正在尝试将背景图像添加到我的UITextView中,但似乎没有这样做的选项.我尝试添加一个imageView与图像作为子视图
self.bioTextView.delegate = self
let imgView = UIImageView(frame: self.bioTextView.frame)
imgView.image = #imageLiteral(resourceName: "text_field_bio")
self.bioTextView.addSubview(imgView)
Run Code Online (Sandbox Code Playgroud)
但这也不起作用.textView背景的颜色很清晰.我也尝试过将imgView发送到后面,但这也不起作用.