[控件] BookTextView

BookTextView

效果

说明

1. 支持富文本

2. 支持自定义view

3. 支持阅读百分比

源码

https://github.com/YouXianMing/BookTextView

//
//  BookTextView.h
//  InTheQuietNight
//
//  Created by YouXianMing on 15/5/18.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ExclusionView.h"
#import "ConfigAttributedString.h"

@interface BookTextView : UIView

// 要显示的文本
@property (nonatomic, strong)   NSString       *textString;

// 段落样式的设置
@property (nonatomic, strong)   NSDictionary   *paragraphAttributes;

// 富文本参数数组(ConfigAttributedString对象的数组)
@property (nonatomic, strong)   NSArray        *attributes;

// 计算出的文本的高度
@property (nonatomic, readonly) CGFloat         textHeight;

// 当前文本已读百分比
@property (nonatomic, readonly) CGFloat         currentPercent;

// 存储的图文混排的views
@property (nonatomic, strong)   NSArray        *exclusionViews;

/**
 *  构建出组件(设置完所有参数后再做)
 */
- (void)buildWidgetView;

/**
 *  移动到指定的位置(此方法只有延时执行才有效果,比如延时执行0.01s)
 *
 *  @param position 文本的高度位置
 */
- (void)moveToTextPosition:(CGFloat)position;

/**
 *  移动到指定的百分比(此方法只有延时执行才有效果,比如延时执行0.01s)
 *
 *  @param percent 百分比
 */
- (void)moveToTextPercent:(CGFloat)percent;

@end
//
//  BookTextView.m
//  InTheQuietNight
//
//  Created by YouXianMing on 15/5/18.
//  Copyright (c) 2015年 XianMingYou. All rights reserved.
//

#import "BookTextView.h"

typedef enum : NSUInteger {
    EBOOK_NONE,              // 什么也不做
    EBOOK_CALCULATE_HEIGHT,  // 计算文本高度
} EBookTextViewStatus;

@interface BookTextView ()<UITextViewDelegate> {
    EBookTextViewStatus _bookStatus;

    CGFloat             _tmpOffsetY;
    CGFloat             _tmpPercent;
}

@property (nonatomic, strong)   UITextView     *textView;
@property (nonatomic)           CGFloat         textHeight;
@property (nonatomic)           CGFloat         currentPercent;

@end

@implementation BookTextView

- (void)buildWidgetView {

    // 获取长宽
    CGFloat width  = self.frame.size.width;
    CGFloat height = self.frame.size.height;

    // 创建文本容器并设置段落样式
    NSTextStorage *storage = [[NSTextStorage alloc] initWithString:self.textString
                                                        attributes:self.paragraphAttributes];

    // 设置富文本
    for (int count = 0; count < _attributes.count; count++) {
        ConfigAttributedString *oneConfig = _attributes[count];
        [storage addAttribute:oneConfig.attribute
                        value:oneConfig.value
                        range:oneConfig.range];
    }

    // 管理器
    NSLayoutManager *layoutManager = [NSLayoutManager new];
    [storage addLayoutManager:layoutManager];

    // 显示的容器
    NSTextContainer *textContainer = [NSTextContainer new];
    CGSize size                    = CGSizeMake(width, MAXFLOAT);
    textContainer.size             = size;
    [layoutManager addTextContainer:textContainer];

    // 给TextView添加带有内容和布局的容器
    self.textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, width, height)
                                        textContainer:textContainer];
    self.textView.scrollEnabled                    = YES;
    self.textView.editable                         = NO;
    self.textView.selectable                       = NO;
    self.textView.layer.masksToBounds              = YES;
    self.textView.showsVerticalScrollIndicator     = NO;
    self.textView.delegate                         = self;

    // 如果有额外的views
    if (self.exclusionViews) {

        NSMutableArray *pathArray = [NSMutableArray arrayWithCapacity:_exclusionViews.count];

        // 添加view + 添加path
        for (int count = 0; count < _exclusionViews.count; count++) {

            // 添加view
            ExclusionView *tmpView = _exclusionViews[count];
            [_textView addSubview:tmpView];

            // 添加path
            [pathArray addObject:tmpView.createUIBezierPath];
        }

        textContainer.exclusionPaths = pathArray;
    }

    // 添加要显示的view
    [self addSubview:self.textView];

    // 存储文本高度
    [self storeBookHeight];
}

- (void)storeBookHeight {

    // 先偏移到文本末尾位置
    _bookStatus = EBOOK_CALCULATE_HEIGHT;
    [UIView setAnimationsEnabled:NO];
    [self.textView scrollRangeToVisible:NSMakeRange([self.textView.text length], 0)];
    [UIView setAnimationsEnabled:YES];
    _bookStatus = EBOOK_NONE;

    // 再偏移到文本开头位置
    [UIView setAnimationsEnabled:NO];
    [self.textView scrollRangeToVisible:NSMakeRange(0, 0)];
    [UIView setAnimationsEnabled:YES];
}

- (void)moveToTextPosition:(CGFloat)position {
    [self.textView setContentOffset:CGPointMake(0, position) animated:NO];
}

- (void)moveToTextPercent:(CGFloat)percent {

    // 计算出百分比
    CGFloat position = 0.f;
    if (percent >= 0 && percent <= 1) {
        position = percent * _textHeight;
    } else if (percent < 0) {
        position = 0.f;
    } else {
        position = _textHeight;
    }

    // 移动到指定的位置
    [self.textView setContentOffset:CGPointMake(0, position) animated:NO];
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {

    // Y轴偏移量
    _tmpOffsetY = scrollView.contentOffset.y;
    if (_bookStatus == EBOOK_NONE) {

        _tmpPercent = _tmpOffsetY / _textHeight;
        if (_tmpPercent >= 0 && _tmpPercent <= 1) {
            _currentPercent = _tmpPercent;
        } else if (_tmpPercent < 0) {
            _currentPercent = 0.f;
        } else {
            _currentPercent = 1.f;
        }

        NSLog(@"%f", _currentPercent);

    } else if (_bookStatus == EBOOK_CALCULATE_HEIGHT) {
        self.textHeight = scrollView.contentOffset.y;
    }
}

@end

时间: 2024-12-30 08:57:42

[控件] BookTextView的相关文章

在DataGridView控件中实现冻结列分界线

我们在使用Office Excel的时候,有很多时候需要冻结行或者列.这时,Excel会在冻结的行列和非冻结的区域之间绘制上一条明显的黑线.如下图: (图1) WinForm下的DataGridView控件也能实现类似的冻结行或者列的功能(参见:http://msdn.microsoft.com/zh-cn/library/28e9w2e1(VS.85).aspx) ,但是呢,DataGridView控件默认不会在冻结列或者行的分界处绘制一个明显的分界线,这样的话,最终用户很难注意到当前有列或者

摆脱Login控件,自己定义登录操作

protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { //在登录过程中,程序自动使用login.aspx进行拦截 //验证用户通过后,自动返回拦截的位置 if (Membership.ValidateUser(this.TextBox1.Text, this.TextBox2.Text)) { this.Session["xh"] = this.TextBox1.Text; FormsAuth

python selenium 处理时间日期控件(十五)

测试过程中经常遇到时间控件,需要我们来选择日期,一般处理时间控件通过层级定位来操作或者通过调用js来实现. 1.首先我们看一下如何通过层级定位来操作时间控件. 通过示例图可以看到,日期控件是无法输入日期,点击后弹出日期列表供我们选择日期,自己找了一个日期控制演示一下,通过两次定位,选择了日期 #-*- coding:utf-8 -*- import time from selenium import webdriver driver = webdriver.Chrome() driver.get

Delphi XE10 dxLayoutControl 控件应用指南

http://www.cnblogs.com/Bonny.Wong/p/7440288.html DevExpress VCL套件是一套非常强大的界面控件,可惜关于Delphi开发方面的说明太少,有些控件使用起来一头雾水,不知从何下手.本节详细介绍在Delphi Xe10 Seattle中如何利用dxLayoutControl 控件来做界面布局. 1.  首先从工具箱面板中将dxLayoutControl放在Form上,设置2个关键属性如下: 属性 属性值 说明 Align alClient 一

Android自己定义控件之轮播图控件

背景 近期要做一个轮播图的效果.网上看了几篇文章.基本上都能找到实现,效果还挺不错,可是在写的时候感觉每次都要单独去又一次在Activity里写一堆代码.于是自己封装了一下.这里仅仅是做了下封装成一个控件,不必每次反复写代码了. 效果图 实现分析 轮播图的功能就是实现左右滑动的广告.图片信息展示,那我们就用ViewPager来实现,由于考虑到用户体验,我们还须要在以下加一个指示器来标示滑动到了第几张轮播图.指示器我们能够用一个线性布局来依据要展示的轮播图设置显示的View,我们要做这种一个控件没

[ ObjectListView ] - ListView的增强控件 - 前言 (翻译)

********************************************************************************** 原  标 题: A Much Easier to Use ListView 原文地址: https://www.codeproject.com/Articles/16009/A-Much-Easier-to-Use-ListView 翻       译: 于国栋 http://www.shannon.net.cn *********

MFC 加入背景图片并让控件背景透明

/*加入背景图片*/ BOOL CTOOLDlg::OnEraseBkgnd(CDC* pDC) { // TODO: 在此加入消息处理程序代码和/或调用默认值 CDialog::OnEraseBkgnd(pDC); HBITMAP   m_hBitmap; HDC           m_hBkDC; m_hBitmap   =   ::LoadBitmap(::GetModuleHandle(NULL),MAKEINTRESOURCE(IDB_BITMAP2)); m_hBkDC     =

[转] 基于C#的波形显示控件的实现

转自 基于C#的波形显示控件的实现[附完整源码下载] 编者记: 09年暑假正好在学院实验室呆了一段时间,做了个完整的上位机软件(具体实现:根据下位机的指令,实现通过串口来操纵下位机进行实验,并将采集的数据进行处理和保存,并以图形的方式显示),整个项目边学C# WinForm边设计,这个波形显示控件就是项目中的一部分,也花了自己绝大多数时间.此外,顺便将该波形显示控件当作自己毕业设计的内容,下文实际上是节选自自己的本科毕业论文,希望对大家能有所帮助.代码以及文章有疏漏.错误.不妥之处在所难免,欢迎

ASP.NET页面生命周期与控件生命周期

ASP.NET页面生命周期 (1)PreInit 预初始化(2)Init 初始化(3)InitComplete 初始化完成(4)PreLoad 预加载(5)Load 加载(6)LoadComplete 加载完成(7)PreRender 预输出(8)PreRenderComplete 预输出完成(9)Unload 卸载 ASP.NET控件生命周期 -- 实例化(Instantiate) 控件被页面或另一个控件通过调用它的构造器所实例化.这个步骤之后所列出的阶段,仅当控件加入控件树中才会发生. --