I use this code to change the frame of an uitextview but the options of copy/paste etc. are disabled afterwards.
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;
Any help is appreciated.