uiview - Scrolling RSS reader iPhone View -
I am planning to add a small subview to the bottom of my current app so that it is the RSS feed headlines one One time to show on What would be the best type of view to use for this? UITextView
, UIWebView
? Maybe a custom UITableViewCell
? If I use UITextView
and it taps it, it displays the keyboard, but if I set the setUserInteractionEnabled
to NO
then I Do not be able to launch a different look with the article ...
Will the original animation be used by scrolling each block of text?
Thank you.
Use a UILB. And yes, you'll use the core animation to animate. There is a basic UIView animation block which will move a UILabel from the top right of the screen to the left.
Remember that AnchorPoint for a view such as the UILB is the center of the scene. This is the reason that calling -setCenter is taking half the width of the label to determine where x coordinate should be. Y coordinates, of course, should be the only one.
Comments
Post a Comment