I want to make an e-book reader iPhone app. Should I use UITextView or UIWebView to display the text? Which control is used by other e-book readers?
I want to make an e-book reader iPhone app. Should I use UITextView or
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would use a
UIWebView, as it gives you much more flexibility in the presentation of the text. According to the UITextView Class Reference:Also,
UITextViewuses scrolling to display large amounts of text (it inherits fromUIScrollView); in an e-book reader, you will most likely want to paginate the content, so you will not want the scrolling behaviour.