I'm planning on adding a small subview to the bottom of my current app so that it can display RSS feed headlines one at a time. What would be the best type of view to use for this? UITextView
, UIWebView
? Perhaps a custom UITableViewCell
? If i use a UITextView
and tap it, it displays the keyboard, but if i setUserInteractionEnabled
to NO
then i wont be able to launch a different view with the article...
Scrolling each block of text would be done using core animation right?
Thanks.