我使用此代码更改uitextview的框架,但之后禁用了复制/粘贴等选项。
CGRect viewFrame = poemcomment.frame;
viewFrame.size.height = 144;
viewFrame.origin.y = 513;
poemcomment.frame = viewFrame;
poemcomment.userInteractionEnabled=YES;
poemcomment.layer.cornerRadius = 5;
poemcomment.clipsToBounds = YES;
感谢任何帮助。
答案 0 :(得分:2)
您可以查看以下SO帖子,其中描述了通过继承UITextView并实现以下函数来启用带输入控件的cpoy / paste选项的方法
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
@mrueg同样问了同样的问题 解决方案,
Enable copy and paste on UITextField without making it editable