UITextview show vertical scrollbar all the time
问题 I am trying to show vertical scrollbar on uitextview at the beginning with the code but it isn't doing so. UITextView *txtView=[[UITextView alloc]initWithFrame:CGRectMake(10, 80,self.view.frame.size.width-20,self.view.frame.size.height/2)]; [txtView setEditable:NO]; [txtView setSelectable:NO]; [txtView setText:self.secret]; [txtView setBackgroundColor:[UIColor clearColor]]; [txtView setTextColor:[UIColor whiteColor ]]; [txtView setFont:font]; txtView.showsVerticalScrollIndicator=YES; [txtView