@interface DMFeedbackViewController ()<UITextViewDelegate,UIAlertViewDelegate>@property (nonatomic, strong) UITextView *feedbackTextView;//意见反馈输入框@pro ...
分类:
移动开发 时间:
2016-04-20 09:59:34
阅读次数:
321
1 //UIActivityIndicatorView //小菊花,加载 2 3 #import "ActivityIndicatorVC.h" 4 5 @interface ActivityIndicatorVC (){ 6 UIActivityIndicatorView *_activity ; ...
分类:
其他好文 时间:
2016-04-16 09:35:26
阅读次数:
382
转载自:http://www.cnblogs.com/tmf-4838/p/5380495.html #import "ViewController.h" @interface ViewController ()<UITextViewDelegate> // KVO和动态自适应尺寸 @propert ...
分类:
移动开发 时间:
2016-04-12 00:11:36
阅读次数:
303
#import "ViewController.h" @interface ViewController ()<UITextViewDelegate> // KVO和动态自适应尺寸 @property (nonatomic, strong)UITextView *txtView; // KVO测试 ...
分类:
移动开发 时间:
2016-04-11 23:50:29
阅读次数:
491
UITextView代理方法:判断 -(void)textViewDidEndEditing:(UITextView *)textView{ if ([self stringContainsEmoji:self.feedbackTextView.text]) { UIAlertView *alert ...
分类:
移动开发 时间:
2016-04-11 18:38:45
阅读次数:
262
在iOS应用开发中,有三类视图对象会打开虚拟键盘,进行输入操作,但如何关闭虚拟键盘,却没有提供自动化的方法。这个需要我们自己去实现。这三类视图对象分别是UITextField,UITextView和UISearchBar。 这里介绍一下UITextField中关闭虚拟键盘的几种方法。 (miki西游 ...
分类:
移动开发 时间:
2016-04-09 23:19:18
阅读次数:
305
在iOS应用开发中,有三类视图对象会打开虚拟键盘,进行输入操作,但如何关闭虚拟键盘,却没有提供自动化的方法。这个需要我们自己去实现。这三类视图对象分别是UITextField,UITextView和UISearchBar。 这里介绍一下UITextField中关闭虚拟键盘的几种方法。 (miki西游 ...
分类:
移动开发 时间:
2016-04-08 09:00:08
阅读次数:
217
我们知道在iOS开发时,控件UITextField有个placeholder属性,UITextField和UITextView使用方法基本类似,有两个小区别:1.UITextField单行输入,而UITextView可以多行输入。2.UITextField有placeholder属性,而UIText ...
分类:
其他好文 时间:
2016-03-29 10:04:41
阅读次数:
120
在Swift2.0中,UITextFile 和 UITextView 的使用总体上和在OC中是一样的,今天只是给大家一段代码,然后说UITextView里面的光标位置的问题。先看他们使用的简单的代码 主要说一下这个 self.automaticallyAdjustsScrollViewInsets
分类:
编程语言 时间:
2016-03-21 18:06:51
阅读次数:
154