textview 在分钟内自动滚动
我有一个 iOS 应用程序,可以在表格视图中显示一些文件,文件类型为“txt”。我想制作一个电子书应用程序,它可以在文本视图中显示txt文件,并统计字数,输入用户每分钟要阅读的字数,文本视图开始滚动并在一分钟内完成滚动 希望得到您的帮助,谢谢!
I have an app for iOS that display some files in a tableview which the filetype is "txt".I want to make a E-book app,it can display the txt file in a textview,and count the words,input how many words /min user want to read ,the textview begin to scroll and finish scroll in some minute
Hope for you help,Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 UITextView 或 UIWebView,使用重复的 NSTimer,计算完成了多少分钟的比率,并使用它来设置视图的 contentOffset。
更新了更多细节:
这是近似值,未经测试。它会在一分钟内滚动它。要创建计时器,
请更新视图。我认为这会将文本滚动到屏幕之外。
Use UITextView or a UIWebView, use a repeating NSTimer, calculate the ratio of how much of the minute is completed, and use it to set the contentOffset of the view.
Updated with more detail:
This is approximate and untested. It will scroll it in one minute. To create a timer,
Update the view. I think this will scroll the text off the screen.