一.点击textField没有响应
(1)textField上面还有视图(如下)
UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(50, 100, 220, 40)];
tf.backgroundColor = [UIColor yellowColor];
tf.borderSt...
分类:
其他好文 时间:
2014-08-23 08:50:00
阅读次数:
149
自定义TextField的删除按钮#import @interface CustomTextField : UITextField@property(strong,nonatomic)NSString * alwaysShowStr;@end@interface CustomTextField ()...
分类:
其他好文 时间:
2014-08-22 10:42:06
阅读次数:
145
创建一个类封装uitextfield和UIlabel (源代码.m文件)
#import "TLView.h"
@interface TLView ()
{
UILabel *_desLabel;
//左边的lable
UITextField *_textField;//右边的
}
@end
@implementatio...
分类:
移动开发 时间:
2014-08-21 13:28:14
阅读次数:
643
方法一:
//1, 关闭键盘
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];
如果一个view上好多输入框,我们可以关闭弹出的软键盘要遍历然后调用resignFirstResponder
或者在隐藏键盘的方法中调用 [[[UIApplication
...
分类:
移动开发 时间:
2014-08-21 13:27:44
阅读次数:
170
源代码(.m文件)
#import "TLView.h"
//本类的延展
@interface TLView ()
{
UILabel *_desLabel;
//左边的lable
UITextField *_textField;//右边的lable
}
@end
@implementation...
分类:
其他好文 时间:
2014-08-21 13:27:14
阅读次数:
165
@interface LTView : UIView
//1.是否采用安全模式
- (void)setSecureEntry:(BOOL)secureEntry;
//2.设置键盘的类型
- (void)setKeyBoardType:(UIKeyboardType)keyBoardType;
//3.设置textField代理
- (void)setDelegate:(id)delegate;
...
分类:
其他好文 时间:
2014-08-21 09:52:33
阅读次数:
232
1、s:textfield 和 input 相当于 名称: 即s:textfield =lable+text+td格式特点:(1)如果action传给了jsp一个type变量,则输入框的value属性自动赋值为type.name,但是input text的value不会根据name取赋值(...
分类:
Web程序 时间:
2014-08-18 16:07:32
阅读次数:
208
1、s:textfield的label可以设置显示的文字,但是不能嵌套调用s:property,这样可以解决2、s:iterator 遍历的序号Done
分类:
其他好文 时间:
2014-08-18 02:48:13
阅读次数:
244
1.建立一个setting bundle文件。如图:
2.会出现一个文件,打开Root.plist文件,对plist文件中的值进行设置。
3.其中设置中又6种样式。
Group 开头的title
Multi value
Slider 拖拉设置
TextField 文本框
Title 文本
Toggle Switch 开关控件...
分类:
移动开发 时间:
2014-08-14 20:47:19
阅读次数:
350