UITextView - Horizontal Scrolling?
How can I create a horizontal scrolling UITextView? When I set my text programmatically it adds automatic line breaks, so I can only scroll vertically... titleView.text = @"this is a very long text. this is a very long text. this is a very long text. this is a very long text. this is a very long text."; Thanks for your answers. EDIT: So far I tried this: UIScrollview *yourScrollview = [[UIScrollView alloc] initWithFrame:CGRectMake(0 ,0 , self.view.frame.size.width, 50)]; CGFloat textLength = [titleView.text sizeWithFont:titleView.font constrainedToSize:CGSizeMake(9999, 50) lineBreakMode