iOS如何使用UITextView實(shí)現(xiàn)首行縮進(jìn)、撤銷輸入、反撤銷輸入功能

這篇文章主要介紹iOS如何使用UITextView實(shí)現(xiàn)首行縮進(jìn)、撤銷輸入、反撤銷輸入功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、大通ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的大通網(wǎng)站制作公司

 最近公司涉及到作家助手的功能,能撤銷輸入的文字,并能反撤銷被撤銷掉的文字。

該功能類似ios系統(tǒng)的搖一搖撤銷輸入。

當(dāng)時(shí)也特迷茫,不知道從何下手,后來(lái)搜索了大量的資料,終于完成了這個(gè)功能,現(xiàn)在就將該功能的實(shí)現(xiàn)寫出來(lái),共勉。

這個(gè)功能涉及到ios原生類:NSUndomanager。這個(gè)類挺強(qiáng)大。廢話不多說(shuō),直接上代碼。

#import "ViewController.h"
@interface ViewController ()<UITextViewDelegate>{
  UITextView *_textView;
  NSUndoManager *_undomanager;
  NSInteger _length;
  UIButton *undobutton;
  UIButton *redobutton;
}
@end
@implementation ViewController
- (void)viewDidLoad {
  [super viewDidLoad];
  UIBarButtonItem *undoItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemUndo target:self action:@selector(undoitem)];
  UIBarButtonItem *redoItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemRedo target:self action:@selector(redoitem)];
  self.navigationItem.leftBarButtonItem = undoItem;
  self.navigationItem.rightBarButtonItem = redoItem;
  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoardShow:) name:UIKeyboardWillShowNotification object:nil];
  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoardHidden:) name:UIKeyboardWillHideNotification object:nil];
  _length = 0;
//初始化NSUndoManager
  _undomanager = [[NSUndoManager alloc] init];
  _textView = [[UITextView alloc]initWithFrame:CGRectMake(0, 200, self.view.frame.size.width, 400)];
  _textView.backgroundColor = [UIColor yellowColor];
  _textView.delegate = self;
  _textView.font = [UIFont systemFontOfSize:15];
  _textView.layer.cornerRadius = 5;
  _textView.layer.masksToBounds = YES;
  _textView.textColor = [UIColor blackColor];
  _textView.text = @" ";//要設(shè)置初始文本,不然段落體現(xiàn)不出來(lái)。
  NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
  paragraphStyle.lineSpacing = 5;  //行間距
  paragraphStyle.firstLineHeadIndent = 30;  /**首行縮進(jìn)寬度*/
  paragraphStyle.alignment = NSTextAlignmentLeft;
  NSDictionary *attributes = @{
                 NSFontAttributeName:[UIFont systemFontOfSize:13],
                 NSParagraphStyleAttributeName:paragraphStyle
                 };
  _textView.attributedText = [[NSAttributedString alloc] initWithString:_textView.text attributes:attributes];
//監(jiān)聽(tīng)textview文本改動(dòng)的通知
 [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(changeTextViewText) name:UITextViewTextDidChangeNotification object:nil];
  [self.view addSubview:_textView];
}
-(void)redoitem{
  //反撤銷
  [_undomanager redo];
}
-(void)undoitem{
  //撤銷
  [_undomanager undo];
}
-(void)keyBoardShow:(NSNotification *)noti{
  NSDictionary *dic = noti.userInfo;
  NSValue *aValue = [dic objectForKey:UIKeyboardFrameEndUserInfoKey];
  CGRect keyboardRect = [aValue CGRectValue];
  int height = keyboardRect.size.height;
  [_textView setContentInset:UIEdgeInsetsMake(0, 0, height, 0)];
}
-(void)keyBoardHidden:(NSNotification *)noti{
  [_textView setContentInset:UIEdgeInsetsMake(0, 0, 0, 0)];
}
- (void)setMyObjectTitle:(NSString *)newTitle{
  //判斷當(dāng)前NSUndoManager的狀態(tài),是處于撤銷或者反撤銷的狀態(tài)
-(void)textViewDidChange:(UITextView *)textView
  if (_undomanager.isUndoing) {
    NSInteger length = newTitle.length;
    if (_textView.text.length>0) {
      //獲取 
      _textView.text = [_textView.text substringWithRange:NSMakeRange(0, _textView.text.length - length)];
      [_undomanager registerUndoWithTarget:self
                    selector:@selector(setMyObjectTitle:)
                     object:newTitle];
    }
  }else if (_undomanager.isRedoing){
    _textView.text = [_textView.text stringByAppendingString:newTitle];
    [_undomanager registerUndoWithTarget:self
                  selector:@selector(setMyObjectTitle:)
                   object:newTitle];
  }else{
    NSString *currentText = _textView.text;
    if (newTitle != currentText) {
      _textView.text = currentText;
      [_undomanager registerUndoWithTarget:self
                    selector:@selector(setMyObjectTitle:)
                     object:newTitle];
    }else{
      _textView.text = newTitle;
    }
  }
}
-(void)changeTextViewText{
  if (_textView.text.length>0) {
    undobutton.enabled = YES;
  }else{
    undobutton.enabled = NO;
    redobutton.enabled = NO;
  }
  NSString *text ;
  if (_length != 0) {
    NSInteger textLength = _textView.text.length;
    if (textLength > _length) {
      NSInteger newLength = textLength - _length;
      text = [NSString stringWithFormat:@"%@",[_textView.text substringWithRange:NSMakeRange(_length, newLength)]];
    }else{
      text = _textView.text;
    }
  }else{
    text = _textView.text;
  }
  _length = _textView.text.length;
  [self setMyObjectTitle:text];
}

以上是“iOS如何使用UITextView實(shí)現(xiàn)首行縮進(jìn)、撤銷輸入、反撤銷輸入功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

當(dāng)前題目:iOS如何使用UITextView實(shí)現(xiàn)首行縮進(jìn)、撤銷輸入、反撤銷輸入功能
文章出自:http://www.muchs.cn/article30/ghoeso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、用戶體驗(yàn)、網(wǎng)站維護(hù)網(wǎng)站建設(shè)、營(yíng)銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名