1.UIScrollView有2个子类,uitextview和uitableview,这两个控件经常需要用到,因此熟练掌握它的使用是很有必要的。它们都是在内容超出屏幕时,可以提供水平或垂直滚动条。2.主要的3个属性,contentSize、contentInset和contentOffset。2.1...
分类:
其他好文 时间:
2014-12-15 15:10:42
阅读次数:
215
//
// 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...
分类:
移动开发 时间:
2014-12-11 00:25:53
阅读次数:
345
摘要
本章主要使用presentViewController和dismissViewControllerAnimated实现自定义多视图的切换,例子里面模拟导航视图控制器模式,不过跳转的时候有点区别。
运行结果
过程概要
1.新建工程后新增一个基于UIViewController的类,用作多视图的第二视图;
2.在主视图里面创建一个UINavigat...
分类:
其他好文 时间:
2014-12-09 19:46:32
阅读次数:
232
IOS--UITextView多行文本的输入和显示的使用方法详细// UITextView的常用方法 主要用来输入和显示多行文本信息UITextView*oneTextView = [[UITextViewalloc]init];oneTextView.frame=CGRectMake(0,20,3...
分类:
移动开发 时间:
2014-12-06 10:03:29
阅读次数:
302
- (void)registerForKeyboardNotifications {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWasShown:) name:UIKeyboardDidShowNotification object:nil];
[[NSNoti...
分类:
移动开发 时间:
2014-12-04 14:00:20
阅读次数:
168
#pragma mark UITextViewDelegate- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{ if ...
分类:
移动开发 时间:
2014-11-30 14:05:47
阅读次数:
150
UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(0, 100, 320, 200)]; textView.backgroundColor = [UIColor redColor]; textView.textAli...
分类:
其他好文 时间:
2014-11-24 18:38:16
阅读次数:
134
定义两个UITextView,一个用于输入文本,一个用于显示提示信息,当输入文本为空时显示提示信息,否则不显示提示信息。
//6.3.1文字内容提示
_contentTextViewTip = [[UITextView alloc] initWithFrame:CGRectMake(12, 5, WIDTH_SCREEN - 12 - 12, 105)];
...
分类:
移动开发 时间:
2014-11-20 15:22:20
阅读次数:
148
在iOS应用开发中,有三类视图对象会打开虚拟键盘,进行输入操作,但如何关闭虚拟键盘,却没有提供自动化的方法。这个需要我们自己去实现。这三类视图对象分别是UITextField,UITextView和UISearchBar。 这里介绍一下UITextField中关闭虚拟键盘的几种方法。(miki西游 ...
分类:
移动开发 时间:
2014-11-20 10:10:55
阅读次数:
287