#pragma mark - TextViewDelegate - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if ( ...
分类:
移动开发 时间:
2021-07-01 17:00:12
阅读次数:
0
代码支持: 1、长按textView弹出换行操作; 2、自定义文字间距; 3、为textView添加placeholder文字; 直接贴代码: 1、.m文件 #import "TextView.h" @interface TextView () { NSInteger b_index; } @end ...
分类:
其他好文 时间:
2020-04-16 13:19:32
阅读次数:
97
一、简介 一个应用程序中,输入框基本不可或缺,它衍生的搜索功能在很多APP中随处可见。在iOS开发中,使用的输入框组件是UITextView和UITextField,在React-Native中使用的则是TextInput组件。TextInput组件可以通过键盘将文本输入到APP的组件,它提供了如自 ...
分类:
其他好文 时间:
2019-12-13 14:19:04
阅读次数:
130
需求描述 1. 发布信息时,通过键盘键入@符号,或者点选相关功能键,唤醒@列表,进行选择 2.选择结束后,输入栏改色显示相关内容 3.删除时,整体删除@区块,且不能让光标落在@区块之间 实现步骤 1. 键入@符号,触发相关功能 1 - (BOOL)textView:(UITextView *)tex ...
分类:
移动开发 时间:
2019-11-29 14:23:26
阅读次数:
110
一、UIScrollView是什么? 1、UIScrollView是滚动的view,UIView本身不能滚动,子类UIScrollview拓展了滚动方面的功能。 2、UIScrollView是所有滚动视图的基类。以后的UITableView,UITextView等视图都是继承于该类。 使用场景:显示 ...
分类:
其他好文 时间:
2019-02-01 17:11:38
阅读次数:
204
```swift
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //创建UITextView let textView = UITextV... ...
分类:
编程语言 时间:
2019-01-06 12:00:03
阅读次数:
170
简介 UITextView 具有 label 大部分属性,以及 textField 的属性。 1、UITextView 的创建 2、UITextView 的设置 3、UITextViewDelegate 的协议方法 需遵守协议 UITextViewDelegate,并设置代理 ...
分类:
其他好文 时间:
2018-11-13 02:33:38
阅读次数:
197
@interface HATextView : UITextView @property(nonatomic,copy) NSString *myPlaceholder; //文字 @property(nonatomic,strong) UIColor *myPlaceholderColor; @e ...
分类:
其他好文 时间:
2018-11-06 00:48:24
阅读次数:
180
需求:UITextView只能显示两行 UITextView * textView = [[UITextView alloc]init]; textView.frame = CGRectMake(20, 30, [UIScreen mainScreen].bounds.size.width-40, ...
分类:
其他好文 时间:
2018-09-29 20:28:46
阅读次数:
199