iOS图文混排(需要在文本或者字符串中某些特定位置添加文本框)

在做项目过程中,我遇到这样一个坎:

iOS图文混排(需要在文本或者字符串中某些特定位置添加文本框)_第1张图片


如图所示:这是一个字符串,在那些横线的位置我需要添加文本框来供填写。几经周折,我用了一个比较古老的方法把这个问题解决了。

贴上代码看看吧:

//
//  Layout5Controller.m
//  happylearning
//
//  Created by WuShuliang on 16/3/25.
//  Copyright © 2016年 ajing. All rights reserved.
//

#import "Layout5Controller.h"
#import "ContentController.h"
#import 

#define LINE @"____________"

@interface Layout5Controller ()
{
    NSString *_questionString;//"\n"分割后数组中的元素
    NSString *questionString;//LINE分割后数组中的元素
    
    NSMutableArray *arrayQuestion;//根据LINE把字符串分割存储在数组中
    
    NSMutableArray *_arrayQuestionWidth;//"\n"分割后数组中的元素存进去
    NSMutableArray *_arrayQuestionHeight;//"\n"分割后数组中的行数存进去
    
}

@end

@implementation Layout5Controller

- (void)viewDidLoad {
    [super viewDidLoad];

    _txtAnswer.delegate=self;
    
    _questionString=[[NSString alloc]init];
    questionString=[[NSString alloc]init];
    
    arrayQuestion=[[NSMutableArray alloc]initWithCapacity:0];
    
    _arrayQuestionWidth=[[NSMutableArray alloc]initWithCapacity:0];
    _arrayQuestionHeight=[[NSMutableArray alloc]initWithCapacity:0];
}

- (void)viewDidAppear:(BOOL)animated
{
//    _lblAnswer1.lineBreakMode = UILineBreakModeWordWrap;//换行模式。
    [self forCreateText];

}

//创建文本框
- (void)forCreateText
{
        //1.根据“\n”把整个字符串分割存放在数组中
        NSArray *arrayNo1=[_strQuestion componentsSeparatedByString:@"\n"];// 这里的_strQuestion就是一个字符串
        NSMutableArray *arrayQuestionNo1=[NSMutableArray arrayWithArray:arrayNo1];
    
        //创建变量,计算整个句子的高度
         CGSize detailSize = [@"the" sizeWithFont:[UIFont systemFontOfSize:19] constrainedToSize:CGSizeMake(MAXFLOAT, MAXFLOAT) lineBreakMode:UILineBreakModeWordWrap];
        //创建变量,计算“_________”的高宽度
            CGSize lineSize = [LINE sizeWithFont:[UIFont systemFontOfSize:19] constrainedToSize:CGSizeMake(MAXFLOAT, MAXFLOAT) lineBreakMode:UILineBreakModeWordWrap];
    
        //循环取出根据“\n”分割成的数组中的数据
        for (int i=0; i2) {//有两个以上元素
                    //            NSLog(@"多根“__________”");
                    
                    for (int j=0; j25) {
        
        _txtAnswer.text = [_txtAnswer.text substringToIndex:25];
        
    }
}

// 键盘失去第一响应者
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    [self.view endEditing:NO];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
这种方法固然是解决了问题,但是我知道一定有更完美的方法,只是我还不会,大神有好的方法,洗耳恭听,还请赐教。好哒,继续工作继续学习吧。

你可能感兴趣的:(iOS)