代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
给UITextView加上占位字符
作者:
佳航
/ 发布于
2014/11/15
/
714
这份代码能够给 UITextView 加上类似 UITextField 那样的占位符(placeholder)。
// // SSTextView.h // SSToolkit // // Created by Sam Soffes on 8/18/10. // Copyright 2010-2011 Sam Soffes. All rights reserved. // /** UITextView subclass that adds placeholder support like UITextField has. */ @interface SSTextView : UITextView /** The string that is displayed when there is no other text in the text view. The default value is `nil`. */ @property (nonatomic, retain) NSString *placeholder; /** The color of the placeholder. The default is `[UIColor lightGrayColor]`. */ @property (nonatomic, retain) UIColor *placeholderColor; @end // // SSTextView.m // SSToolkit // // Created by Sam Soffes on 8/18/10. // Copyright 2010-2011 Sam Soffes. All rights reserved. // #import "SSTextView.h" @interface SSTextView () - (void)_initialize; - (void)_updateShouldDrawPlaceholder; - (void)_textChanged:(NSNotification *)notification; @end @implementation SSTextView { BOOL _shouldDrawPlaceholder; } #pragma mark - Accessors @synthesize placeholder = _placeholder; @synthesize placeholderColor = _placeholderColor; - (void)setText:(NSString *)string { [super setText:string]; [self _updateShouldDrawPlaceholder]; } - (void)setPlaceholder:(NSString *)string { if ([string isEqual:_placeholder]) { return; } [_placeholder release]; _placeholder = [string retain]; [self _updateShouldDrawPlaceholder]; } #pragma mark - NSObject - (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self name:UITextViewTextDidChangeNotification object:self]; [_placeholder release]; [_placeholderColor release]; [super dealloc]; } #pragma mark - UIView - (id)initWithCoder:(NSCoder *)aDecoder { if ((self = [super initWithCoder:aDecoder])) { [self _initialize]; } return self; } - (id)initWithFrame:(CGRect)frame { if ((self = [super initWithFrame:frame])) { [self _initialize]; } return self; } - (void)drawRect:(CGRect)rect { [super drawRect:rect]; if (_shouldDrawPlaceholder) { [_placeholderColor set]; [_placeholder drawInRect:CGRectMake(8.0f, 8.0f, self.frame.size.width - 16.0f, self.frame.size.height - 16.0f) withFont:self.font]; } } #pragma mark - Private - (void)_initialize { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_textChanged:) name:UITextViewTextDidChangeNotification object:self]; self.placeholderColor = [UIColor colorWithWhite:0.702f alpha:1.0f]; _shouldDrawPlaceholder = NO; } - (void)_updateShouldDrawPlaceholder { BOOL prev = _shouldDrawPlaceholder; _shouldDrawPlaceholder = self.placeholder && self.placeholderColor && self.text.length == 0; if (prev != _shouldDrawPlaceholder) { [self setNeedsDisplay]; } } - (void)_textChanged:(NSNotification *)notificaiton { [self _updateShouldDrawPlaceholder]; } @end
试试其它关键字
UITextView
占位字符
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
佳航
贡献的其它代码
(
28
)
.
自定义UITableView折叠效果
.
分组列表中的cell的子视图tag标记,如label和button
.
设置 UITableViewCell 与导航条间距
.
自定义UITableViewCell上的delete按钮
.
设置tableview的cell颜色
.
ios7 UITableView底线右移
.
设置tableViewcell动态高度
.
改变分组列表之间的间距
.
刷新某行cell的方法
.
隐藏或者显示静态栏
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3