学习随笔,记录零散知识点,希望在日后用到的时候,发挥提醒作用!
分类:
其他好文 时间:
2014-06-29 00:12:25
阅读次数:
212
1、案例视图,如下图2、代码TextKit01ViewController.h#import
@interface TextKit01ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *...
分类:
移动开发 时间:
2014-06-08 19:03:04
阅读次数:
382
1、案例如图2、代码TextKit02ViewController.h#import
@interface TextKit02ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *text...
分类:
移动开发 时间:
2014-06-08 18:53:35
阅读次数:
558
UITextView有inputView 和 inputAccessoryView 两个属性,都指定了相应的视图, inputAccessoryView 对象显示在 inputView 对象的上面。与输入相关的还有一个 reloadInputViews 方法用来重新载入输入视图...
分类:
其他好文 时间:
2014-05-09 00:27:46
阅读次数:
366
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现-
(BOOL)textView:(UITextView*)textView shouldChangeTextInRange:(NSRange)rang...
分类:
移动开发 时间:
2014-05-05 11:19:55
阅读次数:
427
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现-
(BOOL)textView:(UITextView*)textView shouldChangeTextInRange:(NSRange)rang...
分类:
移动开发 时间:
2014-05-01 14:54:15
阅读次数:
462
UITextView上如何加上类似于UITextField的placeholder呢,其实在UITextView上加上一个UILabel,然后再实现
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text这个代理方法就可以了。
...
分类:
移动开发 时间:
2014-04-29 13:42:21
阅读次数:
337