views:

1366

answers:

2

I have a view for an inbox. In the view I can currently show 10 sms messages. After 10 sms messages, I need to be able to scroll the messages.

In other words, how do I implement a scrolview in iPhone programming like the one in the mail inbox or the SMS application?

+4  A: 

Firstly, you don't want a UIScrollView for a list of SMSs. UIScrollview - which is often referred to simply as a 'Scroll View' is a more general scrolling view.

To implement a list of scrolling cells like 10 SMS Messages, you should use a UITableView. You get get a log of help on UITableView programming here on Stack Overflow or in Apples docs or on Google.

Roger Nolan