iOS中的UITextView文字輸入游標提示小結_IOS

來源:互聯網
上載者:User

1.建立並初始化

 @property (nonatomic, strong) UITextView *textView; // 建立self.textView = [[UITextView alloc] initWithFrame:self.view.frame]; // 設定textview裡面的字型顏色  self.textView.textColor = [UIColor blackColor]; // 設定字型名字和字型大小  self.textView.font = [UIFont fontWithName:@"Arial" size:18.0]; // 設定代理 self.textView.delegate = self;  // 設定它的背景顏色 self.textView.backgroundColor = [UIColor whiteColor];  self.textView.text = @“hehe”; // 返回鍵的類型  self.textView.returnKeyType = UIReturnKeyDefault; // 鍵盤類型  self.textView.keyboardType = UIKeyboardTypeDefault; // 是否可以拖動  self.textView.scrollEnabled = YES;


2. UITextView退出鍵盤的幾種方式
(1)如果你程式是有導航條的,可以在導航條上面加多一個Done的按鈕,用來退出鍵盤,當然要先實現UITextViewDelegate。

- (void)textViewDidBeginEditing:(UITextView *)textView {  self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(getOverEditing)];  }  - (void)textViewDidEndEditing:(UITextView *)textView {    self.navigationItem.rightBarButtonItem = nil; } - (void)getOverEditing{ [self.textView resignFirstResponder];  }

(2)如果你的textview裡不用斷行符號鍵,可以把斷行符號鍵當做退出鍵盤的響應鍵。

#pragma mark - UITextView Delegate Methods   -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{   if ([text isEqualToString:@"\n"]) {     [textView resignFirstResponder];     return NO;    } return YES;  }

(3)還有你也可以自訂其他視圖控制項載入到鍵盤上用來退出,比如在彈出的鍵盤上面加一個view來放置退出鍵盤的Done按鈕。

   UIToolbar * topView = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320, 30)];    UIBarButtonItem * cancelButton= [[UIBarButtonItem alloc]initWithTitle:@"Done" style:UIBarButtonItemStyleDone target:self action:@selector(dismissKeyBoard)];    NSArray * buttonsArray = @[cancelButton];    [topView setItems:buttonsArray];    [self.textView setInputAccessoryView:topView];  -(void)dismissKeyBoard  {    [tvTextView resignFirstResponder];  }

3.UITextView自定選擇文字後的菜單

在ViewDidLoad中加入:

- (void)viewDidLoad{  [super viewDidLoad];  self._textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 100, 300, 200)];  [self.view addSubview:_textView];    UIMenuItem *menuItem = [[UIMenuItem alloc]initWithTitle:@“我是自訂的菜單" action:@selector(didClickCustomMenuAction)];   UIMenuController *menu = [UIMenuController sharedMenuController];   [menu setMenuItems:[NSArray arrayWithObject:menuItem]];   [menuItem release]; }

當然上面那個@selector裡面的changeColor方法還是自己寫吧,也就是說點擊了我們自訂的功能表項目後會觸發的方法。
然後還得在代碼裡加上一個方法:

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender {   if(action ==@selector(changeColor) || action == @selector(copy:))   {     if(_textView.selectedRange.length>0)       return YES;   }   return NO; } -(void)didClickCustomMenuAction{  NSLog(@"%@“,__function__);}

4.設定UITextView內邊距
當我們因為一些需求將UITextView當成UILabel使用(為了使用UITextView內建的複製,粘貼,選擇功能),這時我們只需要禁用UITextView的幾個屬性就行了

textView.editable = NO;//不可編輯 textView.scrollEnabled = NO;//不可滾動 textView.editable = NO;//不可編輯 textView.scrollEnabled = NO;//不可滾動 

這樣就ok;
但是當我們在實際運用時,想計算文字的大小並設定UITextView的顯示大小

UIFont *font = [UIFont systemFontOfSize:14.0f]; //指定字串的大小  [textView setText:content];  CGSize textSize = [content sizeWithFont:font constrainedToSize:CGSizeMake(200, 2000) lineBreakMode:UILineBreakModeCharacterWrap];  CGRect articleframe = [articleLabel frame]; textView.size.height = textSize.height ;  textView.size.width = textSize.width; [textView setFrame:articleframe]; UIFont *font = [UIFont systemFontOfSize:14.0f]; //指定字串的大小  [textView setText:content];  CGSize textSize = [content sizeWithFont:font constrainedToSize:CGSizeMake(200, 2000) lineBreakMode:UILineBreakModeCharacterWrap];  CGRect articleframe = [articleLabel frame]; textView.size.height = textSize.height ;  textView.size.width = textSize.width; [textView setFrame:articleframe]; 

但是通過這種方法在UILabel上使用沒有任何問題,但是在UITextView是卻不行,文字總是顯示不全,不管你主動寫多了高度給它,當文字不一樣了雙會顯示不全或顯示高度過多;
可以用下面的方法試一下

[self.articleLabel setContentInset:UIEdgeInsetsMake(-10, -5, -15, -5)];//設定UITextView的內邊距 [self.articleLabel setTextAlignment:NSTextAlignmentLeft];//並設定靠左對齊 [self.articleLabel setContentInset:UIEdgeInsetsMake(-10, -5, -15, -5)];//設定UITextView的內邊距 [self.articleLabel setTextAlignment:NSTextAlignmentLeft];//並設定靠左對齊 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.