#import "ViewController.h"#import "UITextField+Shake.h"@interface ViewController ()@property (retain, nonatomic) IBOutlet UIImageView *balloonImage;@p...
分类:
移动开发 时间:
2015-09-17 21:30:08
阅读次数:
237
1.UITextField的初始化及设置searchTextField=[[UITextFieldalloc]initWithFrame:CGRectMake(1.0,0.0,searchBackGroundImageView.frame.size.width, searchBackGroundIm...
分类:
移动开发 时间:
2015-09-16 17:58:45
阅读次数:
263
IQKeyboardManager Github地址 :https://github.com/hackiftekhar/IQKeyboardManager经常在开发一个应用程序,我们遇到了一个问题,iPhone的键盘上滑覆盖的UITextField / UITextView。IQKeyboardMa...
分类:
移动开发 时间:
2015-09-16 15:54:28
阅读次数:
1012
定义一个TextField userNameField = [[UITextField alloc] initWithFrame:CGRectMake(userNameImg.frame.origin.x+30,userNameImg.frame.origin.y, 165, 40)]; ?1. userNameField.placeholder = @"User Name"; ...
分类:
其他好文 时间:
2015-09-16 10:59:20
阅读次数:
166
用系统的UITextField ,加了约束,结果8上面没问题,7就崩溃了,信息如下:Assertion failure in -[UITextField layoutSublayersOfLayer:], /SourceCache/UIKit/UIKit-2935.138/UIView.m:8794...
分类:
移动开发 时间:
2015-09-14 23:56:48
阅读次数:
466
//.h文件#pragma mark---地理编码- (IBAction)geocode:(UIButton *)sender;@property (strong, nonatomic) IBOutlet UITextField *addressTextField;@property (strong...
分类:
移动开发 时间:
2015-09-14 22:33:34
阅读次数:
363
**************#import "HMViewController.h"#import "MBProgressHUD+MJ.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UITextField *...
分类:
移动开发 时间:
2015-09-14 15:25:46
阅读次数:
224
#import "ViewController.h"#import "SecondViewController.h"@interface ViewController ()@property (retain, nonatomic) IBOutlet UITextField *textField;@e...
分类:
移动开发 时间:
2015-09-13 22:50:14
阅读次数:
295
//将要开始输入时调用-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{ return YES;}//将要输入结束时调用-(BOOL)textFieldShouldEndEditing:(UITextField *)textFie...
分类:
其他好文 时间:
2015-09-13 15:53:02
阅读次数:
136
//初始化textfield并设置位置及大小 UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; //设置边框样式,只有设置了才会显示边框样式 text.borderStyle = ....
分类:
其他好文 时间:
2015-09-12 22:14:23
阅读次数:
125