但是,好的,这段代码对我有用。我有一个问题。为什么文本em textView,例如,无法选择?例如,它不会选择要复制的文本。
这是我试图弄清楚为什么阻止在视图中选择文本的代码。
UIView.animateWithDuration(2, delay: 0.0, options:[UIViewAnimationOptions.Repeat, UIViewAnimationOptions.Autoreverse], animations: {
self.view.backgroundColor = UIColor.blackColor()
self.view.backgroundColor = UIColor.greenColor()
self.view.backgroundColor = UIColor.grayColor()
self.view.backgroundColor = UIColor.redColor()
},完成:nil)
答案 0 :(得分:0)
如果它是UITextView:
,请尝试添加它textView.editable = true
textView.selectable = true