I do not know if this was a good decision. But it worked for me. I am posting here so that someone can fix it.
textView = [[UITextView alloc] initWithFrame:CGRectMake(100,200,200 ,200)]; textView.backgroundColor = [UIColor clearColor]; NSLog(@"description: %@", enemyDescription); textView.text = enemyDescription; [textView setEditable:NO]; textView.font = [UIFont fontWithName:@"Helvetica" size:14.0f]; CGPoint location = CGPointMake(200, 160); textView.showsHorizontalScrollIndicator = NO; textView.alwaysBounceVertical = YES; textView.transform = CGAffineTransformMakeRotation(CC_DEGREES_TO_RADIANS( 90.0f )); [[[CCDirector sharedDirector]openGLView]addSubview:textView];
It worked for me. It scrolls only up and down, and also bounces up and down.
Thanks.
source share